gnu: Add rust-crossbeam-queue-0.3.

* gnu/packages/crates-io.scm (rust-crossbeam-queue-0.3): New variable.
(rust-crossbeam-queue-0.2): Inherit from above.
This commit is contained in:
Nicolas Goaziou 2021-02-10 21:49:05 +01:00
parent 971852d216
commit beb6c9fa70
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -8852,8 +8852,33 @@ (define-public rust-crossbeam-epoch-0.7
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.6))))))
(define-public rust-crossbeam-queue-0.3
(package
(name "rust-crossbeam-queue")
(version "0.3.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "crossbeam-queue" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0mk790w2y7cn9zqj6cn1kl8vvgaamlkj6fmpxg1iprdqyp3v6v0g"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-cfg-if" ,rust-cfg-if-1)
("rust-crossbeam-utils" ,rust-crossbeam-utils-0.8))))
(home-page
"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils")
(synopsis "Concurrent queues in Rust")
(description
"This crate provides concurrent queues that can be shared among threads.")
(license (list license:expat license:asl2.0))))
(define-public rust-crossbeam-queue-0.2
(package
(inherit rust-crossbeam-queue-0.3)
(name "rust-crossbeam-queue")
(version "0.2.3")
(source
@ -8864,22 +8889,13 @@ (define-public rust-crossbeam-queue-0.2
(string-append name "-" version ".tar.gz"))
(sha256
(base32 "0w15z68nz3ac4f2s4djhwha8vmlwsh9dlfrmsl4x84y2ah5acjvp"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-cfg-if" ,rust-cfg-if-0.1)
("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
("rust-maybe-uninit" ,rust-maybe-uninit-2))
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.6))))
(home-page
"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue")
(synopsis "Concurrent queues in Rust")
(description
"This crate provides concurrent queues that can be shared among threads.")
(license (list license:expat
license:asl2.0
license:bsd-2))))
(("rust-rand" ,rust-rand-0.6))))))
(define-public rust-crossbeam-queue-0.1
(package