gnu: rust-async-tls-0.10: Move to (gnu packages crates-tls).

* gnu/packages/crates-io.scm (rust-async-tls-0.10): Move from here ...
* gnu/packages/crates-tls.scm: ... to here.

Change-Id: I171b67bbecf09bf41e32a79adfb40a421ffefdd7
This commit is contained in:
Efraim Flashner 2023-12-27 13:47:05 +02:00
parent 123ea83f13
commit 139ce3e819
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351
2 changed files with 26 additions and 26 deletions

View file

@ -4864,32 +4864,6 @@ (define-public rust-async-task-1
(("rust-crossbeam" ,rust-crossbeam-0.7)
("rust-futures" ,rust-futures-0.3))))))
(define-public rust-async-tls-0.10
(package
(name "rust-async-tls")
(version "0.10.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "async-tls" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "126by0la2wvfadazfnmw7b6ch07dk9ggny94a3vvzgk2qdpqn3fx"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-futures-core" ,rust-futures-core-0.3)
("rust-futures-io" ,rust-futures-io-0.3)
("rust-rustls" ,rust-rustls-0.19)
("rust-webpki" ,rust-webpki-0.21)
("rust-webpki-roots" ,rust-webpki-roots-0.21))))
(home-page "https://github.com/async-std/async-tls")
(synopsis "Asynchronous TLS/SSL streams using Rustls")
(description
"This package provides asynchronous TLS/SSL streams using Rustls.")
(license (list license:expat license:asl2.0))))
(define-public rust-async-trait-0.1
(package
(name "rust-async-trait")

View file

@ -33,6 +33,32 @@ (define-module (gnu packages crates-tls)
#:use-module (gnu packages crates-web)
#:use-module (gnu packages rust-apps))
(define-public rust-async-tls-0.10
(package
(name "rust-async-tls")
(version "0.10.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "async-tls" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "126by0la2wvfadazfnmw7b6ch07dk9ggny94a3vvzgk2qdpqn3fx"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-futures-core" ,rust-futures-core-0.3)
("rust-futures-io" ,rust-futures-io-0.3)
("rust-rustls" ,rust-rustls-0.19)
("rust-webpki" ,rust-webpki-0.21)
("rust-webpki-roots" ,rust-webpki-roots-0.21))))
(home-page "https://github.com/async-std/async-tls")
(synopsis "Asynchronous TLS/SSL streams using Rustls")
(description
"This package provides asynchronous TLS/SSL streams using Rustls.")
(license (list license:expat license:asl2.0))))
(define-public rust-rustls-0.21
(package
(name "rust-rustls")