gnu: rust-async-native-tls-0.3: Move to (gnu packages crates-tls).
* gnu/packages/crates-io.scm (rust-async-native-tls-0.3): Move from here ... * gnu/packages/crates-tls.scm: ... to here. Change-Id: Ib3289faa91bffed89cd965caede96145e0d17411
This commit is contained in:
parent
c0db58384f
commit
212b96ff57
2 changed files with 27 additions and 27 deletions
|
@ -4489,33 +4489,6 @@ primitives:
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-async-native-tls-0.3
|
|
||||||
(package
|
|
||||||
(name "rust-async-native-tls")
|
|
||||||
(version "0.3.3")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "async-native-tls" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "0cwv4vbrvcbv58b51y1azfbszzgzhrzxx92q5nl6hk6kkf97m7ly"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:skip-build? #true ;XXX: build when rust-async-std-1 is packaged
|
|
||||||
#:cargo-inputs
|
|
||||||
(;;("rust-async-std" ,rust-async-std-1)
|
|
||||||
("rust-native-tls" ,rust-native-tls-0.2)
|
|
||||||
("rust-thiserror" ,rust-thiserror-1)
|
|
||||||
("rust-tokio" ,rust-tokio-0.2)
|
|
||||||
("rust-url" ,rust-url-2))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-threadpool" ,rust-threadpool-1))))
|
|
||||||
(home-page "https://docs.rs/crate/async-native-tls/")
|
|
||||||
(synopsis "Native TLS using futures")
|
|
||||||
(description "Native TLS using futures")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-async-net-1
|
(define-public rust-async-net-1
|
||||||
(package
|
(package
|
||||||
(name "rust-async-net")
|
(name "rust-async-net")
|
||||||
|
|
|
@ -33,6 +33,33 @@
|
||||||
#:use-module (gnu packages crates-web)
|
#:use-module (gnu packages crates-web)
|
||||||
#:use-module (gnu packages rust-apps))
|
#:use-module (gnu packages rust-apps))
|
||||||
|
|
||||||
|
(define-public rust-async-native-tls-0.3
|
||||||
|
(package
|
||||||
|
(name "rust-async-native-tls")
|
||||||
|
(version "0.3.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "async-native-tls" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0cwv4vbrvcbv58b51y1azfbszzgzhrzxx92q5nl6hk6kkf97m7ly"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #true ;XXX: build when rust-async-std-1 is packaged
|
||||||
|
#:cargo-inputs
|
||||||
|
(;;("rust-async-std" ,rust-async-std-1)
|
||||||
|
("rust-native-tls" ,rust-native-tls-0.2)
|
||||||
|
("rust-thiserror" ,rust-thiserror-1)
|
||||||
|
("rust-tokio" ,rust-tokio-0.2)
|
||||||
|
("rust-url" ,rust-url-2))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-threadpool" ,rust-threadpool-1))))
|
||||||
|
(home-page "https://docs.rs/crate/async-native-tls/")
|
||||||
|
(synopsis "Native TLS using futures")
|
||||||
|
(description "Native TLS using futures.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-async-tls-0.10
|
(define-public rust-async-tls-0.10
|
||||||
(package
|
(package
|
||||||
(name "rust-async-tls")
|
(name "rust-async-tls")
|
||||||
|
|
Reference in a new issue