gnu: Add rust-metrohash-1.

* gnu/packages/crates-io.scm (rust-metrohash-1): New variable.
This commit is contained in:
Maxim Cournoyer 2021-06-04 23:43:40 -04:00
parent 3cc41bcade
commit a38cb9c70e
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -24013,6 +24013,31 @@ (define-public rust-twox-hash-1
and XXH3 algorithms.")
(license license:expat)))
(define-public rust-metrohash-1
(package
(name "rust-metrohash")
(version "1.0.6")
(source
(origin
(method url-fetch)
(uri (crate-uri "metrohash" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0v2hn33ypx79naimfcz58pz46qhj2prawvx1p9abrb72375m799v"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
(("rust-fnv" ,rust-fnv-1)
("rust-twox-hash" ,rust-twox-hash-1))))
(home-page
"https://github.com/arthurprs/metrohash-rs")
(synopsis "Rust implementation of the MetroHash hash algorithm")
(description "This library is a Rust implementation of MetroHash, a high
quality, high performance hash algorithm.")
(license license:expat)))
(define-public rust-meval-0.2
(package
(name "rust-meval")