gnu: Add rust-arraydeque-0.5.

* gnu/packages/crates-io.scm (rust-arraydeque-0.5): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Jordan Moore 2024-12-02 22:00:09 -05:00 committed by Efraim Flashner
parent 3a21e8a1f7
commit edbf2070bf
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3129,6 +3129,26 @@ (define-public rust-array-ops-0.1
structures.")
(license license:mpl2.0)))
(define-public rust-arraydeque-0.5
(package
(name "rust-arraydeque")
(version "0.5.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "arraydeque" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0dn2xdfg3rkiqsh8a6achnmvf5nf11xk33xgjzpksliab4yjx43x"))))
(build-system cargo-build-system)
(home-page "https://github.com/andylokandy/arraydeque")
(synopsis
"Ring buffer with a fixed capacity, which can be stored on the stack")
(description
"This package provides a ring buffer with a fixed capacity, which can be stored
on the stack.")
(license (list license:expat license:asl2.0))))
(define-public rust-arrayref-0.3
(package
(name "rust-arrayref")