crunch/crates/crunch/Cargo.toml
kjuulh 6db03e37cb
feat: with nats
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-09-24 00:44:18 +02:00

28 lines
638 B
TOML

[package]
name = "crunch"
version = "0.1.0"
edition = "2021"
[dependencies]
crunch-envelope.workspace = true
crunch-in-memory = { workspace = true, optional = true }
crunch-traits.workspace = true
crunch-nats = {workspace = true,optional = true}
anyhow.workspace = true
tracing.workspace = true
tokio.workspace = true
tokio-stream.workspace = true
thiserror.workspace = true
async-trait.workspace = true
uuid.workspace = true
futures.workspace = true
[dev-dependencies]
tracing-subscriber.workspace = true
[features]
default = ["in-memory", "traits", "nats"]
traits = []
in-memory = ["dep:crunch-in-memory"]
nats = ["dep:crunch-nats"]