Archived
1
0
Fork 0

gnu: rust-flume-0.10: Update to 0.10.14.

* gnu/packages/crates-io.scm (rust-flume-0.10): Update to 0.10.14.
[arguments]: Don't skip build.
[cargo-inputs]: Add rust-pin-project-1, rust-spin-0.9. Remove
rust-spinning-top-0.2. Replace rust-nanorand-0.5 with 0.7.
[cargo-development-inputs]: Add rust-async-std-1, rust-tokio-1. Replace
rust-crossbeam-channel-0.4 with 0.5, rust-crossbeam-utils-0.7 with 0.8,
rust-rand-0.7 with 0.8.
This commit is contained in:
Efraim Flashner 2023-02-23 16:49:20 +02:00
parent 902a52d9e2
commit 06a5f62a26
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -22093,29 +22093,30 @@ crate.")
(define-public rust-flume-0.10 (define-public rust-flume-0.10
(package (package
(name "rust-flume") (name "rust-flume")
(version "0.10.0") (version "0.10.14")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "flume" version)) (uri (crate-uri "flume" version))
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "14dvj6d2r6vgsy3adv4lncbddjwc59rgl0rcwc1kdnsmqkh7lwhy")))) (base32 "0xvm1wpzkjvf99jxy9jp3dxw5nipa9blg7j0ngvxj0rl3i2b8mqn"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? #true ;XXX: remove when rust-async-std-1 is packaged `(#:cargo-inputs
#:cargo-inputs
(("rust-futures-core" ,rust-futures-core-0.3) (("rust-futures-core" ,rust-futures-core-0.3)
("rust-futures-sink" ,rust-futures-sink-0.3) ("rust-futures-sink" ,rust-futures-sink-0.3)
("rust-nanorand" ,rust-nanorand-0.5) ("rust-nanorand" ,rust-nanorand-0.7)
("rust-spinning-top" ,rust-spinning-top-0.2)) ("rust-pin-project" ,rust-pin-project-1)
("rust-spin" ,rust-spin-0.9))
#:cargo-development-inputs #:cargo-development-inputs
(;("rust-async-std" ,rust-async-std-1) (("rust-async-std" ,rust-async-std-1)
("rust-criterion" ,rust-criterion-0.3) ("rust-criterion" ,rust-criterion-0.3)
("rust-crossbeam-channel" ,rust-crossbeam-channel-0.4) ("rust-crossbeam-channel" ,rust-crossbeam-channel-0.5)
("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7) ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.8)
("rust-futures" ,rust-futures-0.3) ("rust-futures" ,rust-futures-0.3)
("rust-rand" ,rust-rand-0.7) ("rust-rand" ,rust-rand-0.8)
("rust-tokio" ,rust-tokio-1)
("rust-waker-fn" ,rust-waker-fn-1)))) ("rust-waker-fn" ,rust-waker-fn-1))))
(home-page "https://github.com/zesterer/flume") (home-page "https://github.com/zesterer/flume")
(synopsis "Fast multi-producer channel") (synopsis "Fast multi-producer channel")