-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (33 loc) · 1.11 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 = "port-forward-operator"
version = "0.1.8"
edition = "2021"
repository = "https://github.com/mightyshazam/port-forward-operator"
authors = ["KyJah Keys <kyjah.keys@gmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
doc = false
name = "crdgen"
path = "src/crdgen.rs"
[[bin]]
doc = false
name = "controller"
path = "src/main.rs"
[dependencies]
axum = { version = "0.6.20", features = ["tracing"] }
axum-prometheus = "0.4.0"
chrono = { version = "0.4.31", default-features = false, features = ["serde"] }
clap = { version = "4", features = ["color", "derive", "env"] }
futures = "0.3.28"
k8s-openapi = { version = "0.20", default-features = false, features = [
"v1_23",
] }
kube = { version = "0.86.0", default-features = false, features = ["client", "runtime", "derive", "rustls-tls", "ws"] }
schemars = { version = "0.8.15" }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
serde_yaml = "0.9.25"
thiserror = "1.0.48"
tokio = { version = "1.27.0", features = ["full"] }
tracing = "0.1.36"
tracing-subscriber = "0.3.17"