gnu: Add rust-spinning-top-0.2.

* gnu/packages/crates-io.scm (rust-spinning-top-0.2): New variable.
This commit is contained in:
Nicolas Goaziou 2020-12-20 14:59:23 +01:00
parent 8c4afe8b93
commit 3daf1cc4c6
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -30396,6 +30396,28 @@ (define-public rust-spin-on-0.1
ready. This will probably use a lot of CPU, so be careful when you use it.") ready. This will probably use a lot of CPU, so be careful when you use it.")
(license (list license:asl2.0 license:expat)))) (license (list license:asl2.0 license:expat))))
(define-public rust-spinning-top-0.2
(package
(name "rust-spinning-top")
(version "0.2.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "spinning_top" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0dmbb627i05qla1lnxy7r6hpiia76c8kb40zcgrbar0dx1rrslky"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-lock-api" ,rust-lock-api-0.4))))
(home-page "https://github.com/rust-osdev/spinning_top")
(synopsis "Simple spinlock based on @code{lock_api}")
(description
"This package provides a simple spinlock crate based on the abstractions
provided by @code{lock_api}.")
(license (list license:expat license:asl2.0))))
(define-public rust-spmc-0.3 (define-public rust-spmc-0.3
(package (package
(name "rust-spmc") (name "rust-spmc")