-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
48 lines (42 loc) · 1.25 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "hyper-openssl"
version = "0.10.2"
authors = ["Steven Fackler <[email protected]>"]
edition = "2021"
description = "Hyper TLS support via OpenSSL"
license = "MIT/Apache-2.0"
repository = "https://github.com/sfackler/hyper-openssl"
readme = "README.md"
rust-version = "1.68"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
client-legacy = [
"dep:http",
"dep:hyper-util",
"dep:linked_hash_set",
"dep:once_cell",
"dep:parking_lot",
"dep:pin-project",
"dep:tower-layer",
"dep:tower-service",
"hyper-util?/client-legacy",
]
tokio = ["hyper-util?/tokio"]
[dependencies]
http = { version = "1.0.0", optional = true }
hyper = "1.0.1"
hyper-util = { version = "0.1", optional = true }
linked_hash_set = { version = "0.1", optional = true }
once_cell = { version = "1", optional = true }
openssl = "0.10.61"
openssl-sys = "0.9.26"
parking_lot = { version = "0.12", optional = true }
pin-project = { version = "1.1.3", optional = true }
tower-layer = { version = "0.3", optional = true }
tower-service = { version = "0.3", optional = true }
[dev-dependencies]
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
tokio = { version = "1", features = ["full"] }