bazzar/crates/channels/Cargo.toml

18 lines
574 B
TOML

[package]
name = "channels"
version = "0.1.0"
edition = "2021"
[dependencies]
bincode = { version = "*" }
bytes = { version = "1.2.1" }
config = { path = "../config" }
futures = { version = "0.3.25" }
model = { path = "../model" }
rumqttc = { version = "0.17.0" }
serde = { version = "*", features = ['derive'] }
tarpc = { version = "0.30.0", features = ["tokio1", "serde-transport-bincode", "serde-transport", "serde", "serde-transport-json", "tcp"] }
thiserror = { version = "1.0.37" }
tokio = { version = "1.21.2", features = ['full'] }
tracing = { version = "0.1.37" }