patagia-control/Cargo.toml
Daniel Lundin 9b7e1fb226
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
feat: Add user resource w/database as storage
2025-01-14 14:24:35 +01:00

50 lines
1 KiB
TOML

[workspace]
resolver = "2"
members = [
"agent",
"controller",
"instrumentation",
"trace-request",
"xtask",
]
default-members = [
"agent",
"controller",
"instrumentation",
"trace-request",
"xtask",
]
[workspace.package]
version = "0.2.0"
edition = "2021"
[workspace.metadata.crane]
name = "patagia-run"
[workspace.dependencies]
anyhow = "1.0.95"
clap = { version = "4.5.23", features = [
"derive",
"deprecated",
"env",
"wrap_help",
"string",
] }
dropshot = "0.15.1"
futures = "0.3"
http = "1.2.0"
once_cell = "1.20.2"
progenitor = "0.8.0"
reqwest = { version = "0.12.12", features = ["json", "stream", "rustls-tls"] }
schemars = "0.8.21"
semver = "1.0.24"
serde = { version = "1.0.217", features = ["derive"] }
slog = "2.7.0"
slog-async = "2.8.0"
tokio = { version = "1.42.0", features = ["full"] }
tracing = "0.1.41"
tracing-core = "0.1.33"
tracing-chrome = "0.7.2"
tracing-slog = { git = "https://github.com/oxidecomputer/tracing-slog", default-features = false }
uuid = { version = "1", features = [ "serde", "v4" ] }