gnu: Add rust-sluice-0.5.

* gnu/packages/crates-io.scm (rust-sluice-0.5): New variable.
This commit is contained in:
Nicolas Goaziou 2020-12-21 19:17:59 +01:00
parent 9cb0167b72
commit b4161c6123
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -30800,6 +30800,36 @@ (define-public rust-slog-2
license:expat
license:asl2.0))))
(define-public rust-sluice-0.5
(package
(name "rust-sluice")
(version "0.5.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "sluice" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1w9brs9dqyvr2w7cs5nxkp2wggw2xh76bc4qq0p4yxwfvhgfs94f"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-futures-channel" ,rust-futures-channel-0.3)
("rust-futures-core" ,rust-futures-core-0.3)
("rust-futures-io" ,rust-futures-io-0.3))
#:cargo-development-inputs
(("rust-cfg-if" ,rust-cfg-if-1)
("rust-criterion" ,rust-criterion-0.3)
("rust-futures" ,rust-futures-0.3)
("rust-quickcheck" ,rust-quickcheck-0.9)
("rust-quickcheck-macros" ,rust-quickcheck-macros-0.9))))
(home-page "https://github.com/sagebind/sluice")
(synopsis "Ring buffer for byte buffers, FIFO queues, and SPSC channels")
(description
"This package provides asynchronous byte buffers and pipes for concurrent
I/O programming.")
(license license:expat)))
(define-public rust-smallvec-1
(package
(name "rust-smallvec")