bazzar/crates/channels/Cargo.toml

25 lines
687 B
TOML
Raw Normal View History

2022-05-20 16:08:49 +02:00
[package]
name = "channels"
2022-05-20 16:08:49 +02:00
version = "0.1.0"
edition = "2021"
2022-11-05 19:04:38 +01:00
[features]
accounts = []
carts = []
emails = []
search = []
default = ['accounts', 'carts', 'emails', 'search']
2022-05-20 16:08:49 +02:00
[dependencies]
2022-11-01 22:09:58 +01:00
bincode = { version = "*" }
bytes = { version = "1.2.1" }
config = { path = "../config" }
2022-11-05 01:08:45 +01:00
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"] }
2022-11-01 22:09:58 +01:00
thiserror = { version = "1.0.37" }
2022-11-05 01:08:45 +01:00
tokio = { version = "1.21.2", features = ['full'] }
2022-11-01 22:09:58 +01:00
tracing = { version = "0.1.37" }