gnu: Add rust-universal-hash-0.4.

* gnu/packages/crates-io.scm (rust-universal-hash-0.4): New variable.
This commit is contained in:
Arun Isaac 2020-09-17 12:19:15 +05:30
parent a173f3a7e0
commit 284c427ca6
No known key found for this signature in database
GPG key ID: 2E25EE8B61802BB3

View file

@ -27229,6 +27229,28 @@ (define-public rust-unindent-0.1
(license (list license:asl2.0
license:expat))))
(define-public rust-universal-hash-0.4
(package
(name "rust-universal-hash")
(version "0.4.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "universal-hash" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"00hljq64l0p68yrncvyww4cdgkzpzl49vrlnj57kwblkak3b49l3"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-generic-array" ,rust-generic-array-0.14)
("rust-subtle" ,rust-subtle-2))))
(home-page "https://github.com/RustCrypto/traits")
(synopsis "Trait for universal hash functions")
(description "This package provides traits for universal hash functions.")
(license (list license:expat license:asl2.0))))
(define-public rust-unix-socket-0.5
(package
(name "rust-unix-socket")