patagia-control/Cargo.toml
Daniel Lundin 1317c3b721
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
WIP: Initial dropshot server
2024-11-26 21:57:20 +01:00

38 lines
752 B
TOML

[workspace]
resolver = "2"
members = [
"agent",
"controller",
]
[workspace.package]
version = "0.2.0"
edition = "2021"
[workspace.metadata.crane]
name = "patagia-run"
[workspace.dependencies]
anyhow = "1.0.93"
clap = { version = "4.5.21", features = [
"derive",
"deprecated",
"wrap_help",
"string",
] }
dropshot = "0.13.0"
http = "1.1.0"
schemars = "0.8.21"
serde = "1.0.215"
slog = "2.7.0"
slog-async = "2.8.0"
tokio = { version = "1.41.1", features = ["full"] }
tracing = "0.1.40"
tracing-chrome = "0.7.2"
tracing-slog = { git = "https://github.com/oxidecomputer/tracing-slog", default-features = false }
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
"std",
"ansi",
"env-filter",
"fmt",
] }