[package] name = "tokio-rustls" version = "0.26.0" license = "MIT/Apache-2.0" repository = "https://github.com/rustls/tokio-rustls" homepage = "https://github.com/rustls/tokio-rustls" documentation = "https://docs.rs/tokio-rustls" readme = "README.md" description = "Asynchronous TLS/SSL streams for Tokio using Rustls." categories = ["asynchronous", "cryptography", "network-programming"] edition = "2021" rust-version = "1.63" exclude = ["/.github", "/examples", "/scripts"] [dependencies] tokio = "1.0" rustls = { version = "0.23", default-features = false, features = ["std"] } pki-types = { package = "rustls-pki-types", version = "1" } [features] default = ["logging", "tls12", "aws_lc_rs"] aws_lc_rs = ["rustls/aws_lc_rs"] aws-lc-rs = ["aws_lc_rs"] # Alias because Cargo features commonly use `-` early-data = [] fips = ["rustls/fips"] logging = ["rustls/logging"] ring = ["rustls/ring"] tls12 = ["rustls/tls12"] [dev-dependencies] argh = "0.1.1" tokio = { version = "1.0", features = ["full"] } futures-util = "0.3.1" lazy_static = "1.1" webpki-roots = "0.26" rustls-pemfile = "2"