mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 04:07:10 -05:00
gnu: Add rust-async-executor-1.
* gnu/packages/crates-io.scm (rust-async-executor-1): New variable.
This commit is contained in:
parent
5b15b42e3f
commit
3bfb1b568d
1 changed files with 29 additions and 0 deletions
|
@ -1315,6 +1315,35 @@ (define-public rust-async-compression-0.3
|
||||||
and Rust's modern asynchronous IO types.")
|
and Rust's modern asynchronous IO types.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-async-executor-1
|
||||||
|
(package
|
||||||
|
(name "rust-async-executor")
|
||||||
|
(version "1.4.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "async-executor" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0ilivvzc082ynr096xxghc8hdmlmacxilcpn738ylh5lqxq7k1zb"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-async-task" ,rust-async-task-4)
|
||||||
|
("rust-concurrent-queue" ,rust-concurrent-queue-1)
|
||||||
|
("rust-fastrand" ,rust-fastrand-1)
|
||||||
|
("rust-futures-lite" ,rust-futures-lite-1)
|
||||||
|
("rust-once-cell" ,rust-once-cell-1)
|
||||||
|
("rust-vec-arena" ,rust-vec-arena-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-async-channel" ,rust-async-channel-1)
|
||||||
|
("rust-async-io" ,rust-async-io-1)
|
||||||
|
("rust-easy-parallel" ,rust-easy-parallel-3))))
|
||||||
|
(home-page "https://github.com/stjepang/async-executor")
|
||||||
|
(synopsis "Async executor")
|
||||||
|
(description "This library provides async executors.")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-async-io-1
|
(define-public rust-async-io-1
|
||||||
(package
|
(package
|
||||||
(name "rust-async-io")
|
(name "rust-async-io")
|
||||||
|
|
Loading…
Reference in a new issue