forked from cncf/clomonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
93 lines (91 loc) · 2.19 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[workspace]
resolver = "2"
members = [
"clomonitor-apiserver",
"clomonitor-archiver",
"clomonitor-core",
"clomonitor-linter",
"clomonitor-notifier",
"clomonitor-registrar",
"clomonitor-tracker",
]
[workspace.package]
version = "1.0.0"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.65"
[workspace.dependencies]
anyhow = "1.0.75"
askalono = "0.4.6"
askama = "0.12.0"
askama_axum = "0.3.0"
async-trait = "0.1.73"
axum = { version = "0.6.20", features = ["macros"] }
bincode = "1.3.3"
cached = { version = "0.46.0", features = ["async"] }
clap = { version = "4.4.5", features = ["derive"] }
clomonitor-core = { path = "../clomonitor-core" }
comfy-table = "7.0.1"
config = "0.13.3"
deadpool = "0.10.0"
deadpool-postgres = { version = "0.11.0", features = ["serde"] }
futures = "0.3.28"
git2 = "0.18.1"
glob = "0.3.1"
graphql_client = { version = "0.13.0", features = ["reqwest"] }
hex = "0.4.3"
http = "0.2.9"
hyper = "0.14.27"
lazy_static = "1.4.0"
metrics = "0.21.1"
metrics-exporter-prometheus = "0.12.1"
mime = "0.3.17"
mockall = "0.11.4"
mockito = "1.1.1"
octorust = "0.3.2"
openssl = { version = "0.10.57", features = ["vendored"] }
postgres-openssl = "0.5.0"
postgres-types = { version = "0.2.6", features = ["derive"] }
predicates = "3.0.4"
regex = "1.9.5"
reqwest = "0.11.20"
resvg = "0.27.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
serde_yaml = "0.9.25"
serde_qs = "0.12.0"
sha2 = "0.10.8"
tempfile = "3.8.0"
tera = { version = "1.19.1", default-features = false }
time = { version = "0.3.29", features = [
"formatting",
"macros",
"parsing",
"serde",
] }
tiny-skia = "0.8.4"
tokio = { version = "1.32.0", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"time",
] }
tokio-postgres = { version = "0.7.10", features = [
"with-time-0_3",
"with-serde_json-1",
"with-uuid-1",
] }
tower = "0.4.13"
tower-http = { version = "0.4.4", features = [
"auth",
"fs",
"set-header",
"trace",
] }
tracing = "=0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] }
usvg = "0.27.0"
uuid = { version = "1.4.1", features = ["serde"] }
which = "4.4.2"
wiremock = "0.5.19"