mirror of https://github.com/zkat/cacache-rs.git
fix(deps): moved to reflink-copy (#55)
Fixes: https://github.com/zkat/cacache-rs/issues/46
This commit is contained in:
parent
c735d83a31
commit
6624d66c16
|
|
@ -18,7 +18,7 @@ futures = { version = "0.3.17", optional = true }
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
memmap2 = { version = "0.5.8", optional = true }
|
memmap2 = { version = "0.5.8", optional = true }
|
||||||
miette = "5.7.0"
|
miette = "5.7.0"
|
||||||
reflink = "0.1.3"
|
reflink-copy = "0.1.5"
|
||||||
serde = "1.0.130"
|
serde = "1.0.130"
|
||||||
serde_derive = "1.0.130"
|
serde_derive = "1.0.130"
|
||||||
serde_json = "1.0.68"
|
serde_json = "1.0.68"
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ use futures::io::AsyncReadExt;
|
||||||
#[cfg(feature = "tokio")]
|
#[cfg(feature = "tokio")]
|
||||||
use tokio::io::AsyncReadExt;
|
use tokio::io::AsyncReadExt;
|
||||||
|
|
||||||
|
use reflink_copy as reflink;
|
||||||
use ssri::{Algorithm, Integrity, IntegrityChecker};
|
use ssri::{Algorithm, Integrity, IntegrityChecker};
|
||||||
|
|
||||||
#[cfg(any(feature = "async-std", feature = "tokio"))]
|
#[cfg(any(feature = "async-std", feature = "tokio"))]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue