forked from tafia/hyper-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 1012 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 1012 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "hyper-proxy"
version = "0.5.1"
authors = ["Johann Tuffe <tafia973@gmail.com>"]
description = "A proxy connector for Hyper-based applications"
documentation = "https://docs.rs/hyper-proxy"
repository = "https://github.com/tafia/hyper-proxy"
readme = "README.md"
keywords = ["hyper", "proxy", "tokio", "ssl"]
categories = ["web-programming::http-client", "asynchronous", "authentication"]
license = "MIT"
[dependencies]
http = "0.1"
hyper = "0.12"
futures = "0.1.17"
tokio-io = "0.1.6"
bytes = "0.4.6"
tokio-tls = { version = "0.2", optional=true }
hyper-tls = { version = "0.3", optional=true }
native-tls = { version = "0.2", optional=true }
tokio-rustls = { version = "0.9", optional=true }
hyper-rustls = { version = "0.16", optional=true }
webpki = { version = "0.19", optional=true }
typed-headers = "0.1"
[dev-dependencies]
tokio = "0.1"
tokio-tcp = "0.1"
[features]
tls = ["tokio-tls", "hyper-tls", "native-tls"]
rustls = ["tokio-rustls", "hyper-rustls", "webpki"]
default = ["tls"]