diff options
Diffstat (limited to 'web/tvixbolt/Cargo.nix')
-rw-r--r-- | web/tvixbolt/Cargo.nix | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/web/tvixbolt/Cargo.nix b/web/tvixbolt/Cargo.nix index 6247425c3de2..a2ad6cc33e80 100644 --- a/web/tvixbolt/Cargo.nix +++ b/web/tvixbolt/Cargo.nix @@ -3668,7 +3668,7 @@ rec { } { name = "rustc-hash"; - packageId = "rustc-hash"; + packageId = "rustc-hash 1.1.0"; } { name = "text-size"; @@ -3695,7 +3695,7 @@ rec { "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; - "rustc-hash" = rec { + "rustc-hash 1.1.0" = rec { crateName = "rustc-hash"; version = "1.1.0"; edition = "2015"; @@ -3708,6 +3708,20 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; + "rustc-hash 2.0.0" = rec { + crateName = "rustc-hash"; + version = "2.0.0"; + edition = "2021"; + sha256 = "0lni0lf846bzrf3jvci6jaf4142n1mdqxvcpczk5ch9pfgyk8c2q"; + authors = [ + "The Rust Project Developers" + ]; + features = { + "default" = [ "std" ]; + "rand" = [ "dep:rand" "std" ]; + }; + resolvedDefaultFeatures = [ "default" "std" ]; + }; "rustversion" = rec { crateName = "rustversion"; version = "1.0.17"; @@ -4643,6 +4657,10 @@ rec { packageId = "rowan"; } { + name = "rustc-hash"; + packageId = "rustc-hash 2.0.0"; + } + { name = "serde"; packageId = "serde"; features = [ "rc" "derive" ]; |