1[package]
2name = "hyper-tls"
3version = "0.6.0" # don't forget html_root_url in lib.rs
4description = "Default TLS implementation for use with hyper"
5authors = ["Sean McArthur <sean@seanmonstar.com>"]
6license = "MIT/Apache-2.0"
7keywords = ["hyper", "tls", "http", "https", "ssl"]
8homepage = "https://hyper.rs"
9repository = "https://github.com/hyperium/hyper-tls"
10documentation = "https://docs.rs/hyper-tls"
11edition = "2018"
12
13[features]
14alpn = ["native-tls/alpn"]
15vendored = ["native-tls/vendored"]
16
17[dependencies]
18bytes = "1"
19http-body-util = "0.1.0"
20hyper = "1"
21hyper-util = { version = "0.1.0", features = ["client-legacy", "tokio"] }
22native-tls = "0.2.1"
23tokio = "1"
24tokio-native-tls = "0.3"
25tower-service = "0.3"
26
27[dev-dependencies]
28hyper-util = { version = "0.1.0", features = ["http1"] }
29tokio = { version = "1.0.0", features = ["io-std", "macros", "io-util"] }
30