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