-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
56 lines (44 loc) · 1.25 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "cactuar"
version = "0.1.0"
edition = "2021"
default-run = "controller"
[dependencies]
# async runtime
tokio = { version = "1.25", features = ["full"] }
futures = "*" # use the futures version pulled in by tokio
# kubernetes dependencies
kube = { version = "0.82", features = ["runtime", "derive", "client"] }
k8s-openapi = { version = "0.18", features = ["v1_26"] }
# format utilities
serde = "1"
serde_json = "1"
serde_with = "2.2"
serde_yaml = "0.9"
schemars = "0.8"
# human-readable duration handling
duration-str = "0.5"
# logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter", "json"] }
console-subscriber = { version = "0.1", features = ["parking_lot"] }
tracing-log = "0.1"
tracing-error = "0.2"
# error spans
color-eyre = "0.6"
chrono = "0.4.23"
thiserror = "1.0.38"
# http
axum = "0.6.7"
hyper = "*" # use same version as axum
tower = "*" # use same version as axum
# metrics
prometheus = { version = "0.13.3", features = ["process"] }
# configuration
config = "0.13"
[dependencies.uuid]
version = "1.3.0"
features = ["v4", "fast-rng", "macro-diagnostics"]
[dev-dependencies]
pretty_assertions = "1.3"