me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-readlock-tokio-0.1.

* gnu/packages/crates-io.scm (rust-readlock-tokio-0.1): Add variable.

Change-Id: Ic55945c3d2b7c69c6940b6a5607e2e7241f96a88
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Herman Rimm 2024-02-18 22:02:27 +01:00 committed by Efraim Flashner
parent 2d9f83e14a
commit 5126e9d808
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 0 deletions

View File

@ -54122,6 +54122,29 @@ reference counting.")
"This package provides a weird alternative to @code{Arc<RwLock<T>>}.")
(license license:mpl2.0)))
(define-public rust-readlock-tokio-0.1
(package
(name "rust-readlock-tokio")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "readlock-tokio" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1zc356rp6x0imb4rq2jyq238lv065h4gnyr7zsh3c6aj0s4kd8zv"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-rclite" ,rust-rclite-0.2)
("rust-tokio" ,rust-tokio-1))
#:cargo-development-inputs (("rust-tokio" ,rust-tokio-1))))
(home-page "https://github.com/jplatte/readlock")
(synopsis "Weird alternative to Arc<RwLock<T>> using tokio's RwLock")
(description
"This package provides a weird alternative to Arc<@code{RwLock<T>>},
using tokio's @code{RwLock}")
(license license:mpl2.0)))
(define-public rust-recycler-0.1
(package
(name "rust-recycler")