forked from hyperium/hyper-tls
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
37 lines (32 loc) · 1.58 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
[package]
name = "hyper-tls"
version = "0.6.0" # don't forget html_root_url in lib.rs
description = "Default TLS implementation for use with hyper"
authors = ["Sean McArthur <[email protected]>"]
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]
alpn = ["native-tls/alpn"]
vendored = ["native-tls/vendored"]
[dependencies]
bytes = "1"
http-body-util = "0.1.0"
#hyper = "1"
hyper = { git = "https://github.com/hft-team/hyper-dpdk.git", branch = "dpdk", package = "hyper" }
#hyper-util = { version = "0.1.0", features = ["client-legacy", "tokio"] }
hyper-util = { git = "https://github.com/hft-team/hyper-util-dpdk.git", branch = "v0.1.5", package = "hyper-util", features = ["client-legacy", "tokio"] }
native-tls = "0.2.1"
#tokio = "1"
tokio = { git = "https://github.com/hft-team/tokio-dpdk.git", branch = "tokio-1.37.0", package = "tokio" }
#tokio-native-tls = "0.3"
tokio-native-tls = { git = "https://github.com/hft-team/tls-dpdk.git", branch = "0.3.1" }
tower-service = "0.3"
[dev-dependencies]
hyper-util = { git = "https://github.com/hft-team/hyper-util-dpdk.git", branch = "v0.1.5", package = "hyper-util", features = ["http1"] }
#hyper-util = { version = "0.1.0", features = ["http1"] }
#tokio = { version = "1.0.0", features = ["io-std", "macros", "io-util"] }
tokio = { git = "https://github.com/hft-team/tokio-dpdk.git", branch = "tokio-1.37.0", package = "tokio", features = ["io-std", "macros", "io-util"] }