From efcc4f14092dd63e85a54cba9b6b94a3a78a8fbf Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 1 Dec 2023 04:58:24 -0600 Subject: [PATCH] Use upstream commit for reflink-copy requirement (#523) https://github.com/cargo-bins/reflink-copy/pull/51 was merged --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7e30d0c24..f456cf95c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2848,7 +2848,7 @@ dependencies = [ [[package]] name = "reflink-copy" version = "0.1.12" -source = "git+https://github.com/konstin/reflink-copy?rev=1fc25b9ca5087bd20f78546009fe98709e9c4343#1fc25b9ca5087bd20f78546009fe98709e9c4343" +source = "git+https://github.com/cargo-bins/reflink-copy?rev=7dffdccc4d4152cdc0a460b3ba8e77dd84ad74df#7dffdccc4d4152cdc0a460b3ba8e77dd84ad74df" dependencies = [ "cfg-if 1.0.0", "rustix", diff --git a/Cargo.toml b/Cargo.toml index 6e550cbc4..94ed2feaf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ pyproject-toml = { version = "0.8.0" } rand = { version = "0.8.5" } rayon = { version = "1.8.0" } # For correct IO error handling: https://github.com/cargo-bins/reflink-copy/pull/51 -reflink-copy = { git = "https://github.com/konstin/reflink-copy", rev = "1fc25b9ca5087bd20f78546009fe98709e9c4343" } +reflink-copy = { git = "https://github.com/cargo-bins/reflink-copy", rev = "7dffdccc4d4152cdc0a460b3ba8e77dd84ad74df" } regex = { version = "1.10.2" } reqwest = { version = "0.11.22", default-features = false, features = ["json", "gzip", "brotli", "stream", "rustls-tls"] } reqwest-middleware = { version = "0.2.4" }