2025-10-25 20:00:32 +02:00
|
|
|
[package]
|
|
|
|
|
name = "orchestrator"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[features]
|
2025-10-26 16:08:36 +01:00
|
|
|
# Enable libvirt backend on Linux hosts (uses virt crate on Linux)
|
|
|
|
|
libvirt = []
|
2025-10-25 20:00:32 +02:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
common = { path = "../common" }
|
|
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
|
|
|
miette = { version = "7", features = ["fancy"] }
|
2025-11-01 14:44:16 +01:00
|
|
|
thiserror = "2"
|
2025-10-25 20:00:32 +02:00
|
|
|
tracing = "0.1"
|
|
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "fs", "io-util"] }
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
2025-10-26 18:17:02 +01:00
|
|
|
serde_json = "1"
|
2025-10-25 20:00:32 +02:00
|
|
|
serde_yaml = "0.9"
|
2025-11-01 14:44:16 +01:00
|
|
|
config = { version = "0.15", default-features = false, features = ["yaml"] }
|
2025-10-25 20:00:32 +02:00
|
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-native-roots", "http2", "gzip", "brotli", "zstd"] }
|
|
|
|
|
bytes = "1"
|
|
|
|
|
path-absolutize = "3"
|
2025-11-01 12:14:50 +01:00
|
|
|
# gRPC server
|
|
|
|
|
tonic = { version = "0.12", features = ["transport"] }
|
2025-10-25 20:00:32 +02:00
|
|
|
# Compression/decompression
|
|
|
|
|
zstd = "0.13"
|
|
|
|
|
# DB (optional basic persistence)
|
2025-11-01 14:44:16 +01:00
|
|
|
sea-orm = { version = "1.1.17", default-features = false, features = ["sqlx-postgres", "sqlx-sqlite", "runtime-tokio-rustls", "macros", "with-uuid", "with-chrono" ] }
|
2025-10-26 15:38:54 +01:00
|
|
|
migration = { path = "../migration" }
|
2025-11-01 14:44:16 +01:00
|
|
|
sea-orm-migration = { version = "1.1.17" }
|
2025-10-26 15:38:54 +01:00
|
|
|
chrono = { version = "0.4", default-features = false, features = ["clock", "std", "serde"] }
|
2025-10-25 20:00:32 +02:00
|
|
|
# Utilities
|
|
|
|
|
once_cell = "1"
|
|
|
|
|
dashmap = "6"
|
|
|
|
|
async-trait = "0.1"
|
2025-10-26 15:38:54 +01:00
|
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
2025-11-01 12:14:50 +01:00
|
|
|
futures-util = "0.3.31"
|
2025-10-26 16:08:36 +01:00
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2025-11-01 14:44:16 +01:00
|
|
|
virt = { version = "0.4.3" }
|