62 lines
1.8 KiB
TOML
62 lines
1.8 KiB
TOML
[package]
|
|
authors = ["Andrewmatilde <davis6813585853062@outlook.com>", "Hexilee <i@hexilee.me>"]
|
|
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"
|