Archived
1
0
Fork 0

gnu: rust-sluice-0.5: Update to 0.5.5.

* gnu/packages/crates-io.scm (rust-sluice-0.5): Update to 0.5.5.
[cargo-inputs]: Add rust-async-channel-1.  Remove
rust-futures-channel-0.3.
[cargo-development-inputs]: Replace rust-quickcheck-0.9 with 1,
rust-quickcheck-macros with 1.  Remove rust-cfg-if-1.

Change-Id: Id65bf99f968addbf38496e6d4ca4f180c809e0a3
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Efraim Flashner 2024-02-18 22:03:02 +01:00
parent 2a8ffd158f
commit 237c07b3b6
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -66808,26 +66808,25 @@ Unicode strings.")
(define-public rust-sluice-0.5
(package
(name "rust-sluice")
(version "0.5.3")
(version "0.5.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "sluice" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1w9brs9dqyvr2w7cs5nxkp2wggw2xh76bc4qq0p4yxwfvhgfs94f"))))
(base32 "1d9ywr5039ibgaby8sc72f8fs5lpp8j5y6p3npya4jplxz000x3d"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-futures-channel" ,rust-futures-channel-0.3)
(("rust-async-channel" ,rust-async-channel-1)
("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-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))))
("rust-quickcheck" ,rust-quickcheck-1)
("rust-quickcheck-macros" ,rust-quickcheck-macros-1))))
(home-page "https://github.com/sagebind/sluice")
(synopsis "Ring buffer for byte buffers, FIFO queues, and SPSC channels")
(description