mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-02 08:07:29 +01:00
gnu: rust-tokio-openssl-0.6: Update to 0.6.3.
* gnu/packages/crates-io.scm (rust-tokio-openssl-0.6): Update to 0.6.3. [arguments]: Don't skip build. Add cargo-test-flags. [cargo-inputs]: Add rust-openssl-sys-0.9. Remove rust-pin-project-1. [native-inputs]: Add pkg-config. [inputs]: Add openssl. Change-Id: I19d6452d7df3917bb22f7bc66f565da6444825b5
This commit is contained in:
parent
08b1d13fa0
commit
627640c6c8
1 changed files with 13 additions and 5 deletions
|
@ -78028,22 +78028,30 @@ (define-public rust-tokio-native-tls-0.1
|
||||||
(define-public rust-tokio-openssl-0.6
|
(define-public rust-tokio-openssl-0.6
|
||||||
(package
|
(package
|
||||||
(name "rust-tokio-openssl")
|
(name "rust-tokio-openssl")
|
||||||
(version "0.6.1")
|
(version "0.6.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "tokio-openssl" version))
|
(uri (crate-uri "tokio-openssl" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0khjqv8wap79ki7h0l91rs8j0b4ix097lb40b4s1x9sa19ffq6xc"))))
|
(base32 "12l7a01sid095zmdkcmjnds9hwfcyjn9539r3c6b5w89g3xrz3y0"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:cargo-test-flags
|
||||||
|
'("--release" "--"
|
||||||
|
"--skip=test::google")
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-futures" ,rust-futures-0.3)
|
(("rust-futures" ,rust-futures-0.3)
|
||||||
("rust-openssl" ,rust-openssl-0.10)
|
("rust-openssl" ,rust-openssl-0.10)
|
||||||
("rust-pin-project" ,rust-pin-project-1)
|
("rust-openssl-sys" ,rust-openssl-sys-0.9)
|
||||||
("rust-tokio" ,rust-tokio-1))))
|
("rust-tokio" ,rust-tokio-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-tokio" ,rust-tokio-1))))
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config))
|
||||||
|
(inputs
|
||||||
|
(list openssl))
|
||||||
(home-page "https://github.com/alexcrichton/tokio-openssl")
|
(home-page "https://github.com/alexcrichton/tokio-openssl")
|
||||||
(synopsis "SSL streams for Tokio backed by OpenSSL")
|
(synopsis "SSL streams for Tokio backed by OpenSSL")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue