churn/Cargo.toml

37 lines
1.2 KiB
TOML
Raw Permalink Normal View History

[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" }
2023-08-27 00:22:26 +02:00
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"] }
2024-04-05 17:10:46 +02:00
tracing-subscriber = { version = "0.3.18" }
clap = { version = "4.5.4", features = ["derive", "env"] }
dotenv = { version = "0.15.0" }
2024-04-05 17:10:46 +02:00
axum = { version = "0.7.5", features = ["macros"] }
async-trait = "*"
serde = {version = "1", features = ["derive"]}
serde_json = "1"
reqwest = {version = "0.12.4", features = ["json"]}
2024-04-05 17:10:46 +02:00
uuid = {version = "1.8.0", features = ["v4", "serde"]}
itertools = {version = "0.13.0"}
sled = "0.34.7"
chrono = {version = "0.4.38", features = ["serde"]}