From 0724a4c526716504865a2f4fe70018a424886f6917095610339a34fa65c05afa Mon Sep 17 00:00:00 2001 From: Till Wegmueller Date: Mon, 17 Nov 2025 20:01:06 +0100 Subject: [PATCH] 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 --- .mise/tasks/build/deb | 2 +- crates/orchestrator/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.mise/tasks/build/deb b/.mise/tasks/build/deb index 9a62b79..70cc4e9 100755 --- a/.mise/tasks/build/deb +++ b/.mise/tasks/build/deb @@ -7,7 +7,7 @@ if ! command -v cargo-deb >/dev/null 2>&1; then fi # Build release binary first for reproducible asset path -cargo build -p orchestrator --release +cargo build -p orchestrator --release --features libvirt # Package orchestrator cargo deb -p orchestrator --no-build diff --git a/crates/orchestrator/Cargo.toml b/crates/orchestrator/Cargo.toml index c946ea2..36aa04d 100644 --- a/crates/orchestrator/Cargo.toml +++ b/crates/orchestrator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orchestrator" -version = "0.1.1" +version = "0.1.2" edition = "2024" build = "build.rs"