-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (35 loc) · 1.2 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
[package]
name = "kube-forwarder"
version = "0.1.0"
edition = "2021"
[dependencies]
hyper-rustls = { version = "0.23.0" }
tokio-rustls = "0.23.4"
pretty_env_logger = "0.4"
http = "0.2"
http-body = "0.4"
bytes = "1.1.0"
kube = { version = "0.76.0", features = ["runtime", "derive", "rustls-tls", "client", "ws" ] }
k8s-openapi = { version = "0.16.0", features = ["v1_25"] }
warp = { version = "0.3", default-features = false, features = ["tls"] }
log = "0.4.11"
env_logger = "0.9.0"
rand = "0.8.5"
anyhow = { version = "1" }
futures = { version = "0" }
futures-core = "0.3"
futures-util = "0.3"
num-traits = "0.2"
hyper = { version="0.14.23", features = ["http1", "tcp", "server", "stream"]}
tokio = { version = "1", features = [ "full" ] }
tower = { version = "0" }
tracing = { version = "0" }
tracing-subscriber = { version = "0", features = [ "fmt", "json", "env-filter", "smallvec" ], default-features = false }
pin-project = "1"
clap = { version = "3.0.10", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1"
parking_lot = "0.12"
tokio-stream = { version = "0.1", features = ["time", "sync"] }
thiserror = "1"