gnu: rust-tokio-core-0.1: Update to 0.1.18.
* gnu/packages/crates-io.scm (rust-tokio-core-0.1): Update to 0.1.18. [arguments]: Skip the test suite. Change-Id: Iab3e623c823bebb84c6fe40c943c70f5f8f15e3f
This commit is contained in:
parent
3d82e3d146
commit
1ce60f8941
1 changed files with 6 additions and 5 deletions
|
@ -78473,23 +78473,24 @@ writing asynchronous I/O backed applications.")
|
||||||
(define-public rust-tokio-core-0.1
|
(define-public rust-tokio-core-0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-tokio-core")
|
(name "rust-tokio-core")
|
||||||
(version "0.1.17")
|
(version "0.1.18")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "tokio-core" version))
|
(uri (crate-uri "tokio-core" version))
|
||||||
(file-name
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wbgg59mxfvrhzv97y56nh3gmnmw3jj9dhgkmvz27410jjxzpvxf"))
|
"1m7zij19xy13wmlb7a1bghvi4vs8s1hlyggnaajvqfj46i9kkcc7"))
|
||||||
(snippet
|
(snippet
|
||||||
#~(begin (use-modules (guix build utils))
|
#~(begin (use-modules (guix build utils))
|
||||||
|
;; rust-flate2 doesn't have a 'tokio' feature.
|
||||||
(substitute* "Cargo.toml"
|
(substitute* "Cargo.toml"
|
||||||
(("features = \\[\"tokio\"\\]") ""))))))
|
(("features = \\[\"tokio\"\\]") ""))))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:tests? #f ; Wants an old version of flate2
|
||||||
|
#:cargo-inputs
|
||||||
(("rust-bytes" ,rust-bytes-0.4)
|
(("rust-bytes" ,rust-bytes-0.4)
|
||||||
("rust-futures" ,rust-futures-0.1)
|
("rust-futures" ,rust-futures-0.1)
|
||||||
("rust-iovec" ,rust-iovec-0.1)
|
("rust-iovec" ,rust-iovec-0.1)
|
||||||
|
|
Reference in a new issue