-
Notifications
You must be signed in to change notification settings - Fork 75
/
Cargo.toml
93 lines (91 loc) · 2.26 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.81"
[workspace.dependencies]
anyhow = "1.0.88"
askalono = "0.4.6"
askama = "0.12.1"
askama_axum = "0.4.0"
async-trait = "0.1.82"
axum = { version = "0.7.5", features = ["macros"] }
bincode = "1.3.3"
cached = { version = "0.53.1", features = ["async"] }
clap = { version = "4.5.17", features = ["derive"] }
clomonitor-core = { path = "../clomonitor-core" }
comfy-table = "7.1.1"
config = "0.13.4"
deadpool = "0.12.1"
deadpool-postgres = { version = "0.14.0", features = ["serde"] }
futures = "0.3.30"
git2 = "0.19.0"
glob = "0.3.1"
graphql_client = { version = "0.14.0", features = ["reqwest"] }
hex = "0.4.3"
http = "1.1.0"
hyper = "1.4.1"
lazy_static = "1.5.0"
metrics = "0.23.0"
metrics-exporter-prometheus = "0.15.3"
mime = "0.3.17"
mockall = "0.13.0"
mockito = "1.5.0"
octorust = "0.3.2"
openssl = { version = "0.10.66", features = ["vendored"] }
postgres-openssl = "0.5.0"
postgres-types = { version = "0.2.7", features = ["derive"] }
predicates = "3.1.2"
regex = "1.10.6"
reqwest = { version = "0.12.7", features = ["json"] }
resvg = "0.27.0"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
serde_yaml = "0.9.34"
serde_qs = "0.13.0"
sha2 = "0.10.8"
tempfile = "3.12.0"
tera = { version = "1.20.0", default-features = false }
time = { version = "0.3.36", features = [
"formatting",
"macros",
"parsing",
"serde",
] }
tiny-skia = "0.8.4"
tokio = { version = "1.40.0", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"time",
] }
tokio-postgres = { version = "0.7.11", features = [
"with-time-0_3",
"with-serde_json-1",
"with-uuid-1",
] }
tower = { version = "0.5.1", features = ["util"] }
tower-http = { version = "0.5.2", features = [
"auth",
"fs",
"set-header",
"trace",
] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
usvg = "0.27.0"
uuid = { version = "1.10.0", features = ["serde"] }
which = "6.0.3"
wiremock = "0.6.2"