patagia-control/Cargo.toml

61 lines
1.5 KiB
TOML
Raw Normal View History

2024-11-23 19:57:17 +01:00
[workspace]
resolver = "2"
members = [
"agent",
"controller",
"instrumentation",
"trace-request",
2024-12-11 21:12:24 +01:00
"xtask",
2024-11-23 19:57:17 +01:00
]
2024-12-11 21:12:24 +01:00
default-members = [
"agent",
"controller",
"instrumentation",
"trace-request",
2024-12-11 21:12:24 +01:00
"xtask",
]
2024-11-23 19:57:17 +01:00
[workspace.package]
version = "0.2.0"
edition = "2021"
[workspace.metadata.crane]
name = "patagia-run"
[workspace.dependencies]
2025-01-06 00:21:56 +01:00
anyhow = "1.0.95"
2025-01-18 12:15:59 +01:00
chrono = "0.4.39"
2025-01-14 16:46:03 +01:00
clap = { version = "4.5.26", features = [
2024-11-23 19:57:17 +01:00
"derive",
"deprecated",
"env",
2024-11-23 19:57:17 +01:00
"wrap_help",
"string",
] }
2024-12-16 20:18:34 +01:00
dropshot = "0.15.1"
2025-01-18 12:15:59 +01:00
ed25519-dalek = { version = "2.1.1", features = ["pem", "rand_core"] }
futures = "0.3"
2025-01-18 12:15:59 +01:00
hex = "0.4.3"
hkdf = "0.12.4"
2024-12-16 20:18:34 +01:00
http = "1.2.0"
once_cell = "1.20.2"
2025-01-14 16:46:03 +01:00
progenitor = "0.9"
2025-01-18 12:15:59 +01:00
rand = "0.8.5"
2025-01-06 00:21:56 +01:00
reqwest = { version = "0.12.12", features = ["json", "stream", "rustls-tls"] }
2025-01-18 12:15:59 +01:00
schemars = { version = "0.8.21", features = ["bytes", "chrono", "derive"] }
2024-12-16 20:18:34 +01:00
semver = "1.0.24"
2025-01-06 00:21:56 +01:00
serde = { version = "1.0.217", features = ["derive"] }
2025-01-18 12:15:59 +01:00
serde_json = "1.0.138"
serde_with = { version = "3.12.0", features = ["base64", "hex", "macros", "std"] }
# serde_with_macros = { version = "3.12.0", features = ["schemars_0_8"] }
sha2 = "0.10.8"
2024-11-25 20:37:41 +01:00
slog = "2.7.0"
slog-async = "2.8.0"
2025-01-14 16:46:03 +01:00
tokio = { version = "1.43.0", features = ["full"] }
2024-12-16 20:18:34 +01:00
tracing = "0.1.41"
tracing-core = "0.1.33"
2024-11-23 19:57:17 +01:00
tracing-chrome = "0.7.2"
2024-11-25 20:37:41 +01:00
tracing-slog = { git = "https://github.com/oxidecomputer/tracing-slog", default-features = false }
2024-12-14 22:47:40 +01:00
uuid = { version = "1", features = [ "serde", "v4" ] }
2025-01-18 12:15:59 +01:00
x25519-dalek = { version = "2.0.1", features = ["serde", "static_secrets"] }