fix(deps): moved to reflink-copy (#55)

Fixes: https://github.com/zkat/cacache-rs/issues/46
This commit is contained in:
Christian Haynes 2023-09-11 18:03:43 -04:00 committed by Kat Marchán
parent c735d83a31
commit 6624d66c16
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
2 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,7 @@ futures = { version = "0.3.17", optional = true }
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"

View File

@ -11,6 +11,7 @@ use futures::io::AsyncReadExt;
#[cfg(feature = "tokio")]
use tokio::io::AsyncReadExt;
use reflink_copy as reflink;
use ssri::{Algorithm, Integrity, IntegrityChecker};
#[cfg(any(feature = "async-std", feature = "tokio"))]