me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-tokio-tcp-0.1.

* gnu/packages/crates-io.scm (rust-tokio-tcp-0.1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-14 16:32:33 -08:00 committed by Efraim Flashner
parent 77505242f4
commit 6be675ff7b
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 31 additions and 0 deletions

View File

@ -5992,6 +5992,37 @@ the current thread.")
(description "Synchronization utilities.") (description "Synchronization utilities.")
(license license:expat))) (license license:expat)))
(define-public rust-tokio-tcp-0.1
(package
(name "rust-tokio-tcp")
(version "0.1.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "tokio-tcp" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"06a15vg8bcd33ng3h9ldzlq7wl4jsw0p9qpy7v22ls5yah3b250x"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-bytes" ,rust-bytes-0.4)
("rust-futures" ,rust-futures-0.1)
("rust-iovec" ,rust-iovec-0.1)
("rust-mio" ,rust-mio-0.6)
("rust-tokio-io" ,rust-tokio-io-0.1)
("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
#:cargo-development-inputs
(("rust-env-logger" ,rust-env-logger-0.6)
("rust-tokio" ,rust-tokio-0.1))))
(home-page "https://tokio.rs")
(synopsis "TCP bindings for tokio")
(description "TCP bindings for tokio.")
(license license:expat)))
(define-public rust-toml-0.5 (define-public rust-toml-0.5
(package (package
(name "rust-toml") (name "rust-toml")