diff options
Diffstat (limited to 'tvix/Cargo.lock')
-rw-r--r-- | tvix/Cargo.lock | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tvix/Cargo.lock b/tvix/Cargo.lock index 56e568559ffd..9cc9ffb6d1ea 100644 --- a/tvix/Cargo.lock +++ b/tvix/Cargo.lock @@ -375,6 +375,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636" [[package]] +name = "cpufeatures" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" +dependencies = [ + "libc", +] + +[[package]] name = "criterion" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -486,7 +495,10 @@ dependencies = [ "glob", "serde", "serde_json", + "sha2", + "test-case", "test-generator", + "tvix-store-bin", ] [[package]] @@ -1663,6 +1675,17 @@ dependencies = [ ] [[package]] +name = "sha2" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] name = "sharded-slab" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" |