diff options
Diffstat (limited to 'tvix/Cargo.nix')
-rw-r--r-- | tvix/Cargo.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix index 9df3c8af8ef5..33805ced0726 100644 --- a/tvix/Cargo.nix +++ b/tvix/Cargo.nix @@ -7525,6 +7525,19 @@ rec { }; resolvedDefaultFeatures = [ "async" "default" "pin-project-lite" "tokio" "wire" ]; }; + "nohash-hasher" = rec { + crateName = "nohash-hasher"; + version = "0.2.0"; + edition = "2018"; + sha256 = "0lf4p6k01w4wm7zn4grnihzj8s7zd5qczjmzng7wviwxawih5x9b"; + authors = [ + "Parity Technologies <admin@parity.io>" + ]; + features = { + "default" = [ "std" ]; + }; + resolvedDefaultFeatures = [ "default" "std" ]; + }; "nom" = rec { crateName = "nom"; version = "7.1.3"; @@ -16043,6 +16056,10 @@ rec { packageId = "md-5"; } { + name = "nohash-hasher"; + packageId = "nohash-hasher"; + } + { name = "os_str_bytes"; packageId = "os_str_bytes"; features = [ "conversions" ]; |