[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 "] 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"]}