From f81e92082c292c180e33a9a32018499eff0c3c49 Mon Sep 17 00:00:00 2001 From: Christian Haynes <06chaynes@gmail.com> Date: Tue, 1 Aug 2023 19:26:15 -0400 Subject: [PATCH] moved to reflink-copy --- Cargo.toml | 2 +- src/content/read.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 36b078c..bb4f4e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ futures = "0.3.17" hex = "0.4.3" memmap2 = { version = "0.5.8", optional = true } miette = "5.7.0" -reflink = "0.1.3" +reflink-copy = "0.1.5" serde = "1.0.130" serde_derive = "1.0.130" serde_json = "1.0.68" diff --git a/src/content/read.rs b/src/content/read.rs index 704b051..5a30810 100644 --- a/src/content/read.rs +++ b/src/content/read.rs @@ -9,6 +9,7 @@ use futures::io::AsyncReadExt; #[cfg(feature = "tokio")] use tokio::io::AsyncReadExt; +use reflink_copy as reflink; use ssri::{Algorithm, Integrity, IntegrityChecker}; use crate::async_lib::AsyncRead;