From 3e75ff557b56b8dba79bc4a8721c9d4953398a4f Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 24 Jun 2021 17:43:37 +0200 Subject: [PATCH] [yabridgectl] Bump reflink for 32-bit support The version on crates.io always assumes the toolchain is 64-bit. --- tools/yabridgectl/Cargo.lock | 3 +-- tools/yabridgectl/Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/yabridgectl/Cargo.lock b/tools/yabridgectl/Cargo.lock index 4a06aeb7..011501dd 100644 --- a/tools/yabridgectl/Cargo.lock +++ b/tools/yabridgectl/Cargo.lock @@ -390,8 +390,7 @@ dependencies = [ [[package]] name = "reflink" version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc585ec28b565b4c28977ce8363a6636cedc280351ba25a7915f6c9f37f68cbe" +source = "git+https://github.com/nicokoch/reflink?rev=e8d93b465f5d9ad340cd052b64bbc77b8ee107e2#e8d93b465f5d9ad340cd052b64bbc77b8ee107e2" dependencies = [ "libc", "winapi", diff --git a/tools/yabridgectl/Cargo.toml b/tools/yabridgectl/Cargo.toml index 0decd8a9..80ca6677 100644 --- a/tools/yabridgectl/Cargo.toml +++ b/tools/yabridgectl/Cargo.toml @@ -17,7 +17,8 @@ colored = "2.0.0" is_executable = "0.1.2" lazy_static = "1.4.0" promptly = "0.3.0" -reflink = "0.1.3" +# Version 0.1.3 from crates.io assumes a 64-bit toolchain +reflink = { git = "https://github.com/nicokoch/reflink", rev = "e8d93b465f5d9ad340cd052b64bbc77b8ee107e2" } rayon = "1.3.1" serde = "1.0.114" serde_derive = "1.0.114"