2023-09-16 13:23:26 +02:00
|
|
|
[workspace]
|
2023-09-24 10:48:41 +02:00
|
|
|
members = ["crates/*", "examples/*"]
|
2023-09-16 13:23:26 +02:00
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
crunch = { path = "crates/crunch" }
|
2023-09-23 18:21:39 +02:00
|
|
|
crunch-traits = { path = "crates/crunch-traits" }
|
2023-09-17 00:31:43 +02:00
|
|
|
crunch-envelope = { path = "crates/crunch-envelope" }
|
2023-09-23 18:21:39 +02:00
|
|
|
crunch-in-memory = { path = "crates/crunch-in-memory" }
|
2023-09-24 00:44:18 +02:00
|
|
|
crunch-nats = { path = "crates/crunch-nats" }
|
2023-09-24 13:51:35 +02:00
|
|
|
crunch-file = {path = "crates/crunch-file"}
|
2023-09-16 13:23:26 +02:00
|
|
|
|
|
|
|
anyhow = { version = "1.0.71" }
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
2023-09-22 21:31:32 +02:00
|
|
|
tokio-stream = {version = "0.1.14"}
|
2023-09-16 13:23:26 +02:00
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
2023-09-16 16:12:06 +02:00
|
|
|
tracing-subscriber = "0.3.17"
|
|
|
|
thiserror = {version = "1.0.48"}
|
|
|
|
async-trait = "0.1.73"
|
2023-09-22 21:31:32 +02:00
|
|
|
uuid = { version = "1.4.1", features = ["v4"]}
|
|
|
|
futures = "0.3.28"
|
2023-09-24 12:18:29 +02:00
|
|
|
nats = "0.24.0"
|
|
|
|
clap = {version = "4.4.4", features = ["derive"]}
|
|
|
|
toml_edit = {version = "0.20.0",features = ["serde"]}
|
|
|
|
serde = {version = "1.0.88", features = ["derive"]}
|
2023-09-24 14:02:01 +02:00
|
|
|
prost = {version = "0.12"}
|
|
|
|
prost-types = {version = "0.12"}
|
|
|
|
bytes = {version = "0.4"}
|
|
|
|
|
2023-09-24 12:18:29 +02:00
|
|
|
|
|
|
|
pretty_assertions = "1.4.0"
|