From 3744075e5afb10054165a6eac9f4c2fa0be240ac Mon Sep 17 00:00:00 2001 From: Diogo Matsubara Date: Tue, 17 Dec 2024 11:30:17 +0100 Subject: [PATCH] fix: pin home to 0.5.9 (#1673) 0.5.11 requires rustc 1.81 so we pin the dependency to the latest one working with the 1.70 series. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c0826648b..8ad505ec6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -105,7 +105,7 @@ git-version = "0.3.9" hashbrown = "0.14" hex = { version = "0.4.3", default-features = false } # Default features are disabled due to usage in no_std crates hmac = { version = "0.12.1", features = ["std"] } -home = "0.5.9" +home = "=0.5.9" http-types = "2.12.0" humantime = "2.1.0" itertools = "0.13.0"