gnu: Add rust-async-fs-1.

* gnu/packages/crates-io.scm (rust-async-fs-1): New variable.
This commit is contained in:
Nicolas Goaziou 2021-12-03 22:47:20 +01:00 committed by Leo Famulari
parent 13932a61ad
commit 231be8d8e0
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -3427,6 +3427,29 @@ (define-public rust-async-executor-1
(description "This library provides async executors.") (description "This library provides async executors.")
(license (list license:asl2.0 license:expat)))) (license (list license:asl2.0 license:expat))))
(define-public rust-async-fs-1
(package
(name "rust-async-fs")
(version "1.5.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "async-fs" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1qnsqg0jjpda590w8nvbhh5mcmdyx5f43xx2g313fz0izzwa8g4b"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-async-lock" ,rust-async-lock-2)
("rust-blocking" ,rust-blocking-1)
("rust-futures-lite" ,rust-futures-lite-1))))
(home-page "https://github.com/stjepang/async-fs")
(synopsis "Async filesystem primitives in Rust")
(description "This package provides async filesystem primitives.")
(license (list license:asl2.0 license:expat))))
(define-public rust-async-global-executor-2 (define-public rust-async-global-executor-2
(package (package
(name "rust-async-global-executor") (name "rust-async-global-executor")