churn/Cargo.toml
Kasper Juul Hermansen 385290973a
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
chore(deps): update rust crate anyhow to 1.0.86
2024-05-18 12:27:12 +00:00

37 lines
1.2 KiB
TOML

[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
repository = "https://git.front.kjuulh.io/kjuulh/cuddle-please"
description = "Churn is a distributed configuration manager and engine"
readme = "README.md"
license-file = "LICENSE-MIT"
authors = ["kjuulh <contact@kjuulh.io>"]
version = "0.1.0"
edition = "2021"
publish = true
[workspace.dependencies]
churn = { path = "crates/churn" }
churn-agent = { path = "crates/churn-agent" }
churn-server = { path = "crates/churn-server" }
churn-domain = { path = "crates/churn-domain", version = "0.1.0" }
churn-capnp = { path = "crates/churn-capnp", version = "0.1.0" }
anyhow = { version = "1.0.86" }
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.18" }
clap = { version = "4.5.4", features = ["derive", "env"] }
dotenv = { version = "0.15.0" }
axum = { version = "0.7.5", features = ["macros"] }
async-trait = "*"
serde = {version = "1", features = ["derive"]}
serde_json = "1"
reqwest = {version = "0.12.4", features = ["json"]}
uuid = {version = "1.8.0", features = ["v4", "serde"]}
itertools = {version = "0.13.0"}
sled = "0.34.7"
chrono = {version = "0.4.38", features = ["serde"]}