mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-30 16:12:58 -05:00
gnu: Add rust-tokio-executor-0.1.
* gnu/packages/crates-io.scm (rust-tokio-executor-0.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
eafec2b41e
commit
1cb21ed5a6
1 changed files with 27 additions and 0 deletions
|
@ -5001,6 +5001,33 @@ (define-public rust-time-0.1
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
;; Cyclic dependency with rust-tokio.
|
||||||
|
(define-public rust-tokio-executor-0.1
|
||||||
|
(package
|
||||||
|
(name "rust-tokio-executor")
|
||||||
|
(version "0.1.7")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "tokio-executor" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0pjmgpg58k3hf5q9w6xjljsv8xy66lf734qnfwsc0g3pq3349sl3"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
|
||||||
|
("rust-futures" ,rust-futures-0.1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-tokio" ,rust-tokio-0.1))))
|
||||||
|
(home-page "https://github.com/tokio-rs/tokio")
|
||||||
|
(synopsis "Future execution primitives")
|
||||||
|
(description "Future execution primitives.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
;; Cyclic dependencies with tokio and tokio-current-thread
|
;; Cyclic dependencies with tokio and tokio-current-thread
|
||||||
(define-public rust-tokio-io-0.1
|
(define-public rust-tokio-io-0.1
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue