gnu: Add rust-reference-counted-singleton-0.1.

* gnu/packages/crates-io.scm (rust-reference-counted-singleton-0.1): New variable.

Change-Id: I1ba985dc8fe4e9dd06cefef557c62e90082f9c8f
This commit is contained in:
Efraim Flashner 2024-03-31 14:57:57 +03:00
parent 70c23f38ac
commit 7ce06daaab
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -60426,6 +60426,28 @@ (define-public rust-ref-thread-local-0.1
`static`s like using both of `lazy_static!` and `@code{RefCell`}")
(license license:expat)))
(define-public rust-reference-counted-singleton-0.1
(package
(name "rust-reference-counted-singleton")
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "reference-counted-singleton" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1fcc50l2xh74r2qn4nx2kk0h4i5ys3v4fhgpg5cz793g00gq8br4"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs (("rust-assert-matches" ,rust-assert-matches-1)
("rust-serial-test" ,rust-serial-test-3))))
(home-page "https://codeberg.org/koutheir/reference-counted-singleton.git")
(synopsis "Reference-counted singleton with recreatable data")
(description
"This package provides a reference-counted singleton whose protected data
can be recreated as needed.")
(license license:expat)))
(define-public rust-refpool-0.4
(package
(name "rust-refpool")