mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-23 21:51:06 +01:00
100 lines
2.8 KiB
TOML
Executable File
100 lines
2.8 KiB
TOML
Executable File
[package]
|
|
name = "actix-tls"
|
|
version = "3.1.1"
|
|
authors = [
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
]
|
|
description = "TLS acceptor and connector services for Actix ecosystem"
|
|
keywords = ["network", "tls", "ssl", "async", "transport"]
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
categories = ["network-programming", "asynchronous", "cryptography"]
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = [
|
|
"rustls_021", # specified to force version with add_trust_anchors method
|
|
"rustls_webpki_0101", # specified to force secure version
|
|
]
|
|
|
|
[features]
|
|
default = ["accept", "connect"]
|
|
|
|
# enable acceptor services
|
|
accept = []
|
|
|
|
# enable connector services
|
|
connect = []
|
|
|
|
# use openssl impls
|
|
openssl = ["tls-openssl", "tokio-openssl"]
|
|
|
|
# alias for backwards compat
|
|
rustls = ["rustls-0_20"]
|
|
|
|
# use rustls v0.20 impls
|
|
rustls-0_20 = ["tokio-rustls-023", "webpki-roots-022"]
|
|
|
|
# use rustls v0.21 impls
|
|
rustls-0_21 = ["tokio-rustls-024", "webpki-roots-025"]
|
|
|
|
# use native-tls impls
|
|
native-tls = ["tokio-native-tls"]
|
|
|
|
# support http::Uri as connect address
|
|
uri = ["http"]
|
|
|
|
[dependencies]
|
|
actix-rt = { version = "2.2", default-features = false }
|
|
actix-service = "2"
|
|
actix-utils = "3"
|
|
|
|
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
|
impl-more = "0.1"
|
|
pin-project-lite = "0.2.7"
|
|
tokio = "1.23.1"
|
|
tokio-util = "0.7"
|
|
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
|
|
|
# uri
|
|
http = { version = "0.2.3", optional = true }
|
|
|
|
# openssl
|
|
tls-openssl = { package = "openssl", version = "0.10.55", optional = true }
|
|
tokio-openssl = { version = "0.6", optional = true }
|
|
|
|
# rustls v0.20
|
|
tokio-rustls-023 = { package = "tokio-rustls", version = "0.23", optional = true }
|
|
webpki-roots-022 = { package = "webpki-roots", version = "0.22", optional = true }
|
|
|
|
# rustls v0.21
|
|
rustls-021 = { package = "rustls", version = "0.21.6" }
|
|
rustls-webpki-0101 = { package = "rustls-webpki", version = "0.101.4" }
|
|
tokio-rustls-024 = { package = "tokio-rustls", version = "0.24", optional = true }
|
|
webpki-roots-025 = { package = "webpki-roots", version = "0.25", optional = true }
|
|
|
|
# native-tls
|
|
tokio-native-tls = { version = "0.3", optional = true }
|
|
|
|
[dev-dependencies]
|
|
actix-codec = "0.5"
|
|
actix-rt = "2.2"
|
|
actix-server = "2"
|
|
bytes = "1"
|
|
env_logger = "0.10"
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["sink"] }
|
|
rcgen = "0.11"
|
|
rustls-pemfile = "1"
|
|
tokio-rustls-024 = { package = "tokio-rustls", version = "0.24", features = ["dangerous_configuration"] }
|
|
trust-dns-resolver = "0.23"
|
|
|
|
[[example]]
|
|
name = "accept-rustls"
|
|
required-features = ["accept", "rustls-0_21"]
|