From 43511d73dcc7452c123baa30cb8ce524d43165aa Mon Sep 17 00:00:00 2001 From: Nick Lanham Date: Tue, 17 Dec 2024 15:57:00 -0800 Subject: [PATCH] Fix msrv check by pinning `home` dependency (#605) ## What changes are proposed in this pull request? `hdfs-native` depends on `which` which depends on `home`. `home` recently updated and bumped their msrv to 1.81. This pins us to the previous version. ## How was this change tested? Check that the msrv test now passes --- kernel/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml index a010e0ed7..b5cb30634 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -112,6 +112,9 @@ integration-test = [ "walkdir", ] +[dependencies.home] +version = "=0.5.9" + [build-dependencies] rustc_version = "0.4.1"