forked from hyperium/hyper-tls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (22 loc) · 864 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "hyper-tls"
version = "0.5.0" # don't forget html_root_url in lib.rs
description = "Default TLS implementation for use with hyper"
authors = ["Sean McArthur <sean@seanmonstar.com>"]
license = "MIT/Apache-2.0"
keywords = ["hyper", "tls", "http", "https", "ssl"]
homepage = "https://hyper.rs"
repository = "https://github.com/hyperium/hyper-tls"
documentation = "https://docs.rs/hyper-tls"
edition = "2018"
[features]
vendored = ["native-tls/vendored"]
[dependencies]
bytes = "1"
native-tls = "0.2.1"
hyper = { git="https://github.com/eyalsatori/hyper", default-features = false, features = ["tcp", "client"] }
tokio = "1"
tokio-native-tls = "0.3"
[dev-dependencies]
tokio = { version = "1.0.0", features = ["io-std", "macros", "io-util"] }
hyper = { git="https://github.com/eyalsatori/hyper", default-features = false, features = ["http1"] }