gnu: rust-futures-cpupool-0.1: Don't hide package.

* gnu/packages/crates-io.scm (rust-futures-cpupool-0.1)[arguments]: Add
rust-futures-0.1, rust-num-cpus-1.11 to cargo-inputs.
[properties]: Remove field.
This commit is contained in:
Efraim Flashner 2020-02-11 16:45:17 +02:00
parent 47fdc51adb
commit 464a85f3bd
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -4129,12 +4129,15 @@ featuring zero allocations, composability, and iterator-like interfaces.")
(base32 (base32
"1r32456gpblzfvnkf60545v8acqk7gh5zhyhi1jn669k9gicv45b")))) "1r32456gpblzfvnkf60545v8acqk7gh5zhyhi1jn669k9gicv45b"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-futures" ,rust-futures-0.1)
("rust-num-cpus" ,rust-num-cpus-1.11))))
(home-page "https://github.com/rust-lang-nursery/futures-rs") (home-page "https://github.com/rust-lang-nursery/futures-rs")
(synopsis "Implementation of thread pools which hand out futures") (synopsis "Implementation of thread pools which hand out futures")
(description (description
"An implementation of thread pools which hand out futures to the results of "An implementation of thread pools which hand out futures to the results of
the computation on the threads themselves.") the computation on the threads themselves.")
(properties '((hidden? . #t)))
(license (list license:asl2.0 (license (list license:asl2.0
license:expat)))) license:expat))))