Enable libvirt feature for orchestrator and bump version to 0.1.2

- Add `--features libvirt` to orchestrator's Debian package build process.
- Update orchestrator version to 0.1.2 in `Cargo.toml`.

Signed-off-by: Till Wegmueller <toasterson@gmail.com>
This commit is contained in:
Till Wegmueller 2025-11-17 20:01:06 +01:00
parent fad8e60ec1
commit 0724a4c526
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ if ! command -v cargo-deb >/dev/null 2>&1; then
fi fi
# Build release binary first for reproducible asset path # Build release binary first for reproducible asset path
cargo build -p orchestrator --release cargo build -p orchestrator --release --features libvirt
# Package orchestrator # Package orchestrator
cargo deb -p orchestrator --no-build cargo deb -p orchestrator --no-build

View file

@ -1,6 +1,6 @@
[package] [package]
name = "orchestrator" name = "orchestrator"
version = "0.1.1" version = "0.1.2"
edition = "2024" edition = "2024"
build = "build.rs" build = "build.rs"