forked from FyraLabs/chisel-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (49 loc) · 1.48 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
[package]
name = "chisel-operator"
version = "0.2.0"
edition = "2021"
description = "Chisel tunnel operator for Kubernetes"
authors = [
"Pornpipat 'Cappy Ishihara' Popum <[email protected]>",
"Lleyton Grey <[email protected]>"
]
categories = ["Network programming", "Configuration"]
license = "MIT"
keywords = [
"kubernetes",
"tunnel",
"chisel",
"k8s-operator",
"operator",
"http",
"tcp",
"udp",
"networking",
]
default-run = "chisel-operator"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
kube = { version = "0.82.2", features = ["runtime", "derive", "rustls-tls", "jsonpatch", "client",], default-features = false }
k8s-openapi = { version = "0.18.0", features = ["v1_26"] }
serde = { version = "1.0.162", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
dotenvy = "0.15"
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log", "async-await"] }
color-eyre = "0.6"
schemars = "0.8"
futures = "0.3"
thiserror = "1.0"
# pretty_env_logger = "0.5.0"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
tracing-logfmt = "0.3.2"
uuid = "1.6"
# opentelemetry = { version = "0.18.0", features = ["trace", "rt-tokio"] }
# opentelemetry-otlp = { version = "0.11.0", features = ["tokio"] }
# tonic = { version = "0.8.3" }
# tracing-opentelemetry = "0.18.0"
# opentelemetry_api = "0.18.0"
[[bin]]
name = "crdgen"
path = "src/crdgen.rs"