2024-12-22 20:56:52 -03:00
|
|
|
[package]
|
|
|
|
name = "gb-messaging"
|
2024-12-25 16:25:09 -03:00
|
|
|
version = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
license = { workspace = true }
|
2024-12-22 20:56:52 -03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gb-core = { path = "../gb-core" }
|
2024-12-25 16:25:09 -03:00
|
|
|
tokio= { workspace = true }
|
|
|
|
rdkafka= { workspace = true }
|
|
|
|
redis= { workspace = true }
|
|
|
|
serde= { workspace = true }
|
|
|
|
serde_json= { workspace = true }
|
|
|
|
uuid= { workspace = true }
|
|
|
|
async-trait= { workspace = true }
|
|
|
|
tracing= { workspace = true }
|
|
|
|
futures= { workspace = true }
|
2024-12-23 00:20:59 -03:00
|
|
|
futures-util = "0.3"
|
2024-12-24 09:22:30 -03:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2024-12-22 20:56:52 -03:00
|
|
|
lapin = "2.3"
|
2025-03-08 12:10:13 -03:00
|
|
|
tokio-tungstenite = { workspace= true, features = ["native-tls"] }
|
2024-12-22 20:56:52 -03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-12-25 16:25:09 -03:00
|
|
|
rstest= { workspace = true }
|
|
|
|
tokio-test = "0.4"
|