crunch/Cargo.toml
kjuulh 5561329510
feat: add crunch init command
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-09-25 21:03:58 +02:00

37 lines
1.2 KiB
TOML

[workspace]
members = ["crates/*", "examples/*"]
resolver = "2"
[workspace.dependencies]
crunch = { path = "crates/crunch" }
crunch-traits = { path = "crates/crunch-traits" }
crunch-envelope = { path = "crates/crunch-envelope" }
crunch-in-memory = { path = "crates/crunch-in-memory" }
crunch-nats = { path = "crates/crunch-nats" }
crunch-file = {path = "crates/crunch-file"}
crunch-codegen = {path = "crates/crunch-codegen"}
anyhow = { version = "1.0.75" }
tokio = { version = "1", features = ["full"] }
tokio-stream = {version = "0.1.14"}
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"
nats = "0.24.0"
clap = {version = "4.4.4", features = ["derive"]}
toml_edit = {version = "0.20.0",features = ["serde"]}
serde = {version = "1.0.188", features = ["derive"]}
prost = {version = "0.12"}
prost-types = {version = "0.12"}
prost-build = "0.12"
bytes = {version = "1.5"}
tempfile = {version = "3.8.0"}
genco = {version = "0.17.5"}
walkdir = {version = "2.4.0"}
regex = {version = "1.9.5"}
inquire = {version = "0.6.2"}
pretty_assertions = "1.4.0"