1 | [package] |
2 | name = "hyper-tls" |
3 | version = "0.6.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 | alpn = ["native-tls/alpn" ] |
15 | vendored = ["native-tls/vendored" ] |
16 | |
17 | [dependencies] |
18 | bytes = "1" |
19 | http-body-util = "0.1.0" |
20 | hyper = "1" |
21 | hyper-util = { version = "0.1.0" , features = ["client-legacy" , "tokio" ] } |
22 | native-tls = "0.2.1" |
23 | tokio = "1" |
24 | tokio-native-tls = "0.3" |
25 | tower-service = "0.3" |
26 | |
27 | [dev-dependencies] |
28 | hyper-util = { version = "0.1.0" , features = ["http1" ] } |
29 | tokio = { version = "1.0.0" , features = ["io-std" , "macros" , "io-util" ] } |
30 | |