From a76c8373e487cd550e39f1311bb6f0f60616507b Mon Sep 17 00:00:00 2001 From: Valentin Ignatev Date: Wed, 15 Jan 2020 03:32:29 +0300 Subject: [PATCH 015/275] gnu: Add rust-futures-io-0.3. * gnu/packages/crates-io.scm (rust-futures-io-0.3): New variable. --- gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 80d03d81f0..f47fe14730 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -3929,6 +3929,29 @@ the computation on the threads themselves.") library.") (license (list license:expat license:asl2.0)))) +(define-public rust-futures-io-0.3 + (package + (name "rust-futures-io") + (version "0.3.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "futures-io" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1zxm41fmkrb0r39ajk3rr9invcd5bdwlafazn8m9aw4y49ymfxp6")))) + (build-system cargo-build-system) + (arguments '(#:skip-build? #t)) + (home-page + "https://rust-lang-nursery.github.io/futures-rs") + (synopsis + "The `AsyncRead` and `AsyncWrite` traits for the futures-rs library") + (description + "The `AsyncRead` and `AsyncWrite` traits for the futures-rs library.") + (license (list license:expat license:asl2.0)))) + (define-public rust-futures-io-preview-0.3 (package (name "rust-futures-io-preview") -- 2.25.0