diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 45 |
1 files changed, 45 insertions, 0 deletions
@@ -288,8 +288,10 @@ dependencies = [ "clap", "image", "indicatif", + "pathdiff", "priority-queue", "rayon", + "reflink-copy", "serde", "serde_json", "sha2", @@ -496,6 +498,12 @@ dependencies = [ ] [[package]] +name = "ioctl-sys" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bd11f3a29434026f5ff98c730b668ba74b1033637b8817940b54d040696133c" + +[[package]] name = "itoa" version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -659,6 +667,12 @@ dependencies = [ ] [[package]] +name = "pathdiff" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" + +[[package]] name = "pin-project" version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -766,6 +780,18 @@ dependencies = [ ] [[package]] +name = "reflink-copy" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84b9fdc4b74744920661b70bc8daa091791c1f6940d7f9a90338754532237c29" +dependencies = [ + "cfg-if", + "ioctl-sys", + "libc", + "windows", +] + +[[package]] name = "ryu" version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1036,6 +1062,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] +name = "windows" +version = "0.51.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" +dependencies = [ + "windows-core", + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-core" +version = "0.51.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] name = "windows-sys" version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" |