From 135e3d37998dda25474dde06f66b9e085599a0a5 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Mon, 2 Feb 2026 17:03:31 -0600 Subject: [PATCH] pin home crate to 0.5.9 to fix CI build --- Cargo.lock | 7 ++++--- Cargo.toml | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 423f3d7..c549125 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -775,11 +775,11 @@ dependencies = [ [[package]] name = "home" -version = "0.5.12" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" +checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.52.0", ] [[package]] @@ -1973,6 +1973,7 @@ dependencies = [ "async-trait", "clap", "futures", + "home", "prost", "prost-build", "prost-types", diff --git a/Cargo.toml b/Cargo.toml index 2bb1d8f..fb37a3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,6 +20,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] } russh = "0.45" russh-keys = "0.45" async-trait = "0.1" +home = "=0.5.9" # Pin to avoid edition2024 requirement in 0.5.12 [build-dependencies] prost-build = "0.14"