From 91c4d50c9d8349b72e65aff1aa1dd69c546ef169 Mon Sep 17 00:00:00 2001 From: Diogo Mendes Matsubara <diogo.matsubara@zettascale.tech> Date: Tue, 17 Dec 2024 10:14:40 +0100 Subject: [PATCH] fix: pin home to 0.5.9 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"