gnu: Add rust-associative-cache-1.

* gnu/packages/crates-io.scm (rust-associative-cache-1): New variable.
This commit is contained in:
Ricardo Wurmus 2023-03-22 10:35:25 +01:00 committed by Efraim Flashner
parent 12a62abbb1
commit 639ef9e357
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -4251,6 +4251,29 @@ (define-public rust-assert-matches-1
"This package asserts that a value matches a pattern in Rust.")
(license (list license:expat license:asl2.0))))
(define-public rust-associative-cache-1
(package
(name "rust-associative-cache")
(version "1.0.1")
(source (origin
(method url-fetch)
(uri (crate-uri "associative-cache" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"05lg0mwpqfqb9zh958x0358x1k5ngmmmbzjnp0imrd8vzhrn40a6"))))
(build-system cargo-build-system)
(arguments
;; 2 doctests fail because rand is not declared
`(#:tests? #false
#:cargo-inputs (("rust-rand" ,rust-rand-0.7))))
(home-page "https://github.com/fitzgen/associative-cache")
(synopsis "Associative cache with fixed-size capacity")
(description
"This package provides a generic N-way associative cache with fixed-size
capacity and random or least recently used (LRU) replacement.")
(license (list license:expat license:asl2.0))))
(define-public rust-aster-0.41
(package
(name "rust-aster")