diff options
author | Aleksandr Vityazev <avityazev@posteo.org> | 2022-01-17 15:14:43 +0000 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-01-22 13:10:10 +0100 |
commit | 231db52605b577c83f605f4ee4ca8885fb6867dc (patch) | |
tree | af8d9475934ef4ae773be849da74fe27eb71ee52 | |
parent | 014a878410a17021b91b682b9b32a1009f4b76c0 (diff) | |
download | guix-231db52605b577c83f605f4ee4ca8885fb6867dc.tar.gz |
gnu: Add rust-hashbrown-0.6.
* gnu/packages/crates-io.scm (rust-hashbrown-0.6): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/crates-io.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index dea7a9c7e2..4ce3234911 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -24896,6 +24896,35 @@ hash map.") ("rust-rustc-hash" ,rust-rustc-hash-1) ("rust-serde-test" ,rust-serde-test-1)))))) +(define-public rust-hashbrown-0.6 + (package + (inherit rust-hashbrown-0.9) + (name "rust-hashbrown") + (version "0.6.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "hashbrown" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1bbf9k46v57zi41m6hjwn83rjldyipv5zwxmdsa7a9c1rb876q4f")))) + (arguments + `(#:cargo-inputs + (("rust-ahash" ,rust-ahash-0.2) + ("rust-autocfg" ,rust-autocfg-0.1) + ("rust-compiler-builtins" ,rust-compiler-builtins-0.1) + ("rust-rayon" ,rust-rayon-1) + ("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1) + ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1) + ("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs + (("rust-doc-comment" ,rust-doc-comment-0.3) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-rand" ,rust-rand-0.5) + ("rust-rayon" ,rust-rayon-1) + ("rust-rustc-hash" ,rust-rustc-hash-1) + ("rust-serde-test" ,rust-serde-test-1)))))) + (define-public rust-hashbrown-0.5 (package (inherit rust-hashbrown-0.8) |