crunch/Cargo.toml

18 lines
484 B
TOML
Raw Normal View History

2023-09-16 13:23:26 +02:00
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
crunch = { path = "crates/crunch" }
crunch-envelope = { path = "crates/crunch-envelope" }
2023-09-16 13:23:26 +02:00
anyhow = { version = "1.0.71" }
tokio = { version = "1", features = ["full"] }
tokio-stream = {version = "0.1.14"}
2023-09-16 13:23:26 +02:00
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = "0.3.17"
thiserror = {version = "1.0.48"}
async-trait = "0.1.73"
uuid = { version = "1.4.1", features = ["v4"]}
futures = "0.3.28"