diff options
| author | Jack O'Connor <[email protected]> | 2025-05-07 14:04:05 -0700 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2025-05-07 14:04:26 -0700 |
| commit | 33038828510d0ce83d5c1cbc1efb10e683c15aaa (patch) | |
| tree | c0a58cbe74904bde2988c3482c37002b60e8fab9 | |
| parent | 23eb792eeee4a4ff1de10eddcb9ed84db3995513 (diff) | |
update duct to v1.0.0
| -rw-r--r-- | b3sum/Cargo.lock | 38 | ||||
| -rw-r--r-- | b3sum/Cargo.toml | 2 |
2 files changed, 28 insertions, 12 deletions
diff --git a/b3sum/Cargo.lock b/b3sum/Cargo.lock index e09a52d..bfb8194 100644 --- a/b3sum/Cargo.lock +++ b/b3sum/Cargo.lock @@ -99,15 +99,16 @@ dependencies = [ "cc", "cfg-if", "constant_time_eq", + "cpufeatures", "memmap2", "rayon-core", ] [[package]] name = "cc" -version = "1.2.19" +version = "1.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362" +checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0" dependencies = [ "shlex", ] @@ -172,6 +173,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" [[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] name = "crossbeam-deque" version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -198,14 +208,14 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" [[package]] name = "duct" -version = "0.13.7" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4ab5718d1224b63252cd0c6f74f6480f9ffeb117438a2e0f5cf6d9a4798929c" +checksum = "b6ce170a0e8454fa0f9b0e5ca38a6ba17ed76a50916839d217eb5357e05cdfde" dependencies = [ "libc", - "once_cell", "os_pipe", "shared_child", + "shared_thread", ] [[package]] @@ -333,9 +343,9 @@ dependencies = [ [[package]] name = "rustix" -version = "1.0.5" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf" +checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266" dependencies = [ "bitflags", "errno", @@ -346,15 +356,21 @@ dependencies = [ [[package]] name = "shared_child" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09fa9338aed9a1df411814a5b2252f7cd206c55ae9bf2fa763f8de84603aa60c" +checksum = "7e297bd52991bbe0686c086957bee142f13df85d1e79b0b21630a99d374ae9dc" dependencies = [ "libc", "windows-sys", ] [[package]] +name = "shared_thread" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a6f98357c6bb0ebace19b22220e5543801d9de90ffe77f8abb27c056bac064" + +[[package]] name = "shlex" version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -368,9 +384,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "syn" -version = "2.0.100" +version = "2.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0" +checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" dependencies = [ "proc-macro2", "quote", diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml index 8ea9302..f8c9023 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -22,5 +22,5 @@ rayon-core = "1.12.1" wild = "2.0.3" [dev-dependencies] -duct = "0.13.3" +duct = "1.0.0" tempfile = "3.1.0" |
