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:
Efraim Flashner 2024-12-19 12:27:33 +02:00
parent 31893f77bd
commit ac3a3e508c
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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")