mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 02:07:56 +01:00
gnu: Add rust-async-object-pool-0.1.
* gnu/packages/crates-io.scm (rust-async-object-pool-0.1): New variable. Change-Id: I1622bfb5a5e3adcc3fad5b2b5f2de9f30ad1628b
This commit is contained in:
parent
31893f77bd
commit
ac3a3e508c
1 changed files with 22 additions and 0 deletions
|
@ -5600,6 +5600,28 @@ (define-public rust-async-net-1
|
|||
("rust-fastrand" ,rust-fastrand-1)
|
||||
("rust-futures-lite" ,rust-futures-lite-1))))))
|
||||
|
||||
(define-public rust-async-object-pool-0.1
|
||||
(package
|
||||
(name "rust-async-object-pool")
|
||||
(version "0.1.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "async-object-pool" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0b3546r13bdhcigbfbmpihh8gxxpad165cp80h3dbwn3jxmlag1k"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-async-std" ,rust-async-std-1))))
|
||||
(home-page "https://github.com/alexliesenfeld/async-object-pool")
|
||||
(synopsis
|
||||
"Object pool implementation that using asynchronous synchronization primitives")
|
||||
(description
|
||||
"This package provides a simple object pool implementation that uses only
|
||||
asynchronous synchronization primitives.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-async-once-cell-0.5
|
||||
(package
|
||||
(name "rust-async-once-cell")
|
||||
|
|
Loading…
Reference in a new issue