gnu: Add rust-byte-pool-0.2.

* gnu/packages/crates-io.scm (rust-byte-pool-0.2): New variable.
This commit is contained in:
Nicolas Goaziou 2020-12-24 12:13:23 +01:00
parent 29d8b1f4b2
commit 3e5c122a04
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -4471,6 +4471,29 @@ (define-public rust-bumpalo-2
(("rust-criterion" ,rust-criterion-0.2)
("rust-quickcheck" ,rust-quickcheck-0.8))))))
(define-public rust-byte-pool-0.2
(package
(name "rust-byte-pool")
(version "0.2.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "byte-pool" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0yh96ral0pni02bzm3fhvicp1ixz1hz3c5m03hsyq66mk61fjf0y"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-crossbeam-queue" ,rust-crossbeam-queue-0.2)
("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))
(home-page "https://crates.io/crates/byte-pool")
(synopsis "Pool of byte slices, for efficient memory usage")
(description
"This package provides a pool of byte slices, for efficient
memory usage.")
(license (list license:asl2.0 license:expat))))
(define-public rust-byte-tools-0.3
(package
(name "rust-byte-tools")