mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 13:20:41 +00:00
35 lines
1.2 KiB
TOML
35 lines
1.2 KiB
TOML
|
|
[package]
|
||
|
|
name = "orchestrator"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2024"
|
||
|
|
|
||
|
|
[features]
|
||
|
|
# Enable libvirt backend on Linux hosts
|
||
|
|
libvirt = ["dep:libvirt"]
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
common = { path = "../common" }
|
||
|
|
clap = { version = "4", features = ["derive", "env"] }
|
||
|
|
miette = { version = "7", features = ["fancy"] }
|
||
|
|
thiserror = "1"
|
||
|
|
tracing = "0.1"
|
||
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "fs", "io-util"] }
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_yaml = "0.9"
|
||
|
|
config = { version = "0.14", default-features = false, features = ["yaml"] }
|
||
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-native-roots", "http2", "gzip", "brotli", "zstd"] }
|
||
|
|
bytes = "1"
|
||
|
|
path-absolutize = "3"
|
||
|
|
# Compression/decompression
|
||
|
|
zstd = "0.13"
|
||
|
|
# Linux-only optional libvirt bindings (feature-gated)
|
||
|
|
libvirt = { version = "0.1", optional = true }
|
||
|
|
# DB (optional basic persistence)
|
||
|
|
sea-orm = { version = "0.12", default-features = false, features = ["sqlx-postgres", "runtime-tokio-rustls" ] }
|
||
|
|
migration = { path = "../migration", optional = true }
|
||
|
|
# Utilities
|
||
|
|
once_cell = "1"
|
||
|
|
dashmap = "6"
|
||
|
|
async-trait = "0.1"
|
||
|
|
uuid = { version = "1", features = ["v4"] }
|