forked from chaos-mesh/chaos-tproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (56 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
authors = ["Andrewmatilde <[email protected]>", "Hexilee <[email protected]>"]
edition = "2018"
name = "chaos-tproxy"
version = "0.5.3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "chaos-tproxy"
path = "chaos-tproxy-controller/src/main.rs"
[workspace]
members = ["chaos-tproxy-controller", "chaos-tproxy-proxy", "tests"]
[dependencies]
anyhow = "1.0"
clap = "2.33.3"
futures = "0.3.10"
http = "0.2.7"
humantime-serde = "1.0"
hyper = {git = "https://github.com/Andrewmatilde/hyper.git", features = ["runtime", "client", "server", "http1", "http2", "stream", "error_return"]}
iptables = "0.4"
libc = {version = "0.2.81", features = ["std"]}
paw = "1.0"
serde = {version = "1.0", features = ["derive"]}
serde_derive = "1.0.123"
serde_json = "1.0"
serde_urlencoded = "0.7"
serde_yaml = "0.8"
socket2 = "0.3"
structopt = {version = "0.3", features = ["paw"]}
tokio = {version = "1.4", features = ["full"]}
wildmatch = "2.1"
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["env-filter", "std"]}
json-patch = "0.2.6"
async-trait = "0.1.50"
bytes = "1.0.1"
chaos-tproxy-proxy = {path = "./chaos-tproxy-proxy"}
uuid = { version = "0.8", features = ["serde", "v4"] }
pnet = "0.28.0"
bincode = "1.3.3"
default-net = "0.9.0"
system_gateway = {git="https://github.com/aruntomar/system_gateway"}
base64 = "0.13.0"
tokio-rustls = "0.23.4"
rustls = "0.20.4"
derivative = "2.2.0"
rustls-pemfile = "1.0.0"
webpki-roots = "0.22"
hyper-rustls = { git = "https://github.com/Andrewmatilde/hyper-rustls.git", features = ["http2"] }
rtnetlink = "0.9.1"
iproute2-rs = {git="https://github.com/chaos-mesh/iproute2-rs.git"}
futures-util = "0.3"
arp-toolkit = {version = "0.2", features = ["sync"]}
surge-ping = "0.7.0"
rand = "0.8.5"
[dev-dependencies]
test-case = "1.2"