-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (52 loc) · 1.75 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
57
[package]
name = "checkpoint"
version = "0.1.0"
edition = "2021"
default-run = "checkpoint"
[dependencies]
anyhow = { version = "1.0.68", features = ["backtrace"] }
axum = "0.6.1"
axum-server = { version = "0.4.4", features = ["tls-rustls"] }
chrono = "0.4.23"
clap = { version = "=4.0.30", features = ["derive"] }
deno_core = "0.191.0"
envy = "0.4.2"
futures-util = "0.3.25"
hostname = "0.3.1"
http = "0.2.8"
interpolator = "0.5.0"
itertools = "0.10.5"
json-patch = "1.0.0"
k8s-openapi = { version = "0.18.0", features = ["v1_21", "schemars"] }
kube = { version = "=0.82.2", default-features = false, features = ["rustls-tls", "client", "derive", "runtime", "admission"] }
# default-features is disabled for tokio compatibility.
# See https://docs.rs/notify/latest/notify/#crossbeam-channel--tokio
notify = { version = "5.0.0", default-features = false, features = ["macos_kqueue"] }
once_cell = "1.16.0"
reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls", "json"] }
schemars = { version = "0.8.11", features = ["url"] }
secrecy = "0.8.0"
serde = { version = "1.0.151", features = ["derive"] }
serde_json = "1.0.91"
serde_v8 = "0.102.0"
serde_yaml = "0.9.16"
slack-blocks = "0.25.0"
stopper = "0.2.0"
thiserror = "1.0.38"
tokio = { version = "1.23.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.3.5", features = ["trace"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["fmt", "env-filter"] }
url = { version = "2.3.1", features = ["serde"] }
[[bin]]
name = "checkpoint-controller"
path = "src/bin/controller.rs"
[[bin]]
name = "checkpoint-webhook"
path = "src/bin/webhook.rs"
[[bin]]
name = "checkpoint-checker"
path = "src/bin/checker.rs"
[[bin]]
name = "checkpoint"
path = "src/bin/cli.rs"