-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·41 lines (37 loc) · 1.21 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
[package]
name = "hyper-client-sockets"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "A Hyper client library allowing access to Unix, VSock and Firecracker sockets"
rust-version = "1.63"
repository = "https://github.com/kanpov/hyper-client-sockets"
readme = "README.md"
keywords = ["hyper", "client", "sockets"]
categories = ["web-programming", "web-programming::http-client"]
[dependencies]
hex = "0.4.3"
hyper = { version = "1.4.1", features = ["client"] }
hyper-util = { version = "0.1.9", features = ["client-legacy", "tokio"] }
pin-project-lite = "0.2.14"
tower-service = "0.3.3"
tokio = { version = "1.40.0", features = ["net", "io-util"], optional = true }
tokio-vsock = { version = "0.5.0", optional = true }
[dev-dependencies]
http-body-util = "0.1.2"
hyper-util = { version = "0.1.6", features = ["http1"] }
hyper-client-sockets = { path = ".", features = [
"unix",
"vsock",
"firecracker",
] }
tokio = { version = "1.38.0", features = ["macros", "fs"] }
hyper = { version = "1.4.1", features = ["server"] }
uuid = { version = "1.10.0", features = ["v4"] }
bytes = "1.7.2"
rand = "0.8.5"
[features]
default = []
unix = ["dep:tokio"]
vsock = ["dep:tokio-vsock"]
firecracker = ["dep:tokio"]