mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add rust-actix-tls-1.
* gnu/packages/crates-io.scm (rust-actix-tls-1): New variable.
This commit is contained in:
parent
4e9dbf6a48
commit
d1a6c1a748
1 changed files with 38 additions and 0 deletions
|
@ -331,6 +331,44 @@ (define-public rust-actix-threadpool-0.3
|
|||
(description "This package provides Actix thread pool for sync code.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-actix-tls-1
|
||||
(package
|
||||
(name "rust-actix-tls")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "actix-tls" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1a4m96jz6vzmknpk5m803c337c6dillnqq4w71nrlphhmzxb9rd4"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-actix-codec" ,rust-actix-codec-0.2)
|
||||
("rust-actix-rt" ,rust-actix-rt-1)
|
||||
("rust-actix-service" ,rust-actix-service-1)
|
||||
("rust-actix-utils" ,rust-actix-utils-1)
|
||||
("rust-derive-more" ,rust-derive-more-0.99)
|
||||
("rust-either" ,rust-either-1)
|
||||
("rust-futures" ,rust-futures-0.3)
|
||||
("rust-log" ,rust-log-0.4)
|
||||
("rust-native-tls" ,rust-native-tls-0.2)
|
||||
("rust-openssl" ,rust-openssl-0.10)
|
||||
("rust-rustls" ,rust-rustls-0.16)
|
||||
("rust-tokio-openssl" ,rust-tokio-openssl-0.4)
|
||||
("rust-tokio-rustls" ,rust-tokio-rustls-0.12)
|
||||
("rust-tokio-tls" ,rust-tokio-tls-0.3)
|
||||
("rust-webpki" ,rust-webpki-0.21)
|
||||
("rust-webpki-roots" ,rust-webpki-roots-0.17))
|
||||
#:cargo-development-inputs
|
||||
(("rust-actix-testing" ,rust-actix-testing-1))))
|
||||
(home-page "https://actix.rs")
|
||||
(synopsis "TLS acceptor services for Actix ecosystem")
|
||||
(description
|
||||
"This package provides TLS acceptor services for Actix ecosystem.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-actix-utils-2
|
||||
(package
|
||||
(name "rust-actix-utils")
|
||||
|
|
Loading…
Reference in a new issue