-
Notifications
You must be signed in to change notification settings - Fork 77
/
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.83"
[workspace.dependencies]
anyhow = "1.0.94"
askalono = "0.5.0"
askama = "0.12.1"
askama_axum = "0.4.0"
async-trait = "0.1.83"
axum = { version = "0.7.9", features = ["macros"] }
bincode = "1.3.3"
cached = { version = "0.54.0", features = ["async"] }
clap = { version = "4.5.23", features = ["derive"] }
clomonitor-core = { path = "../clomonitor-core" }
comfy-table = "7.1.3"
config = "0.13.4"
deadpool = "0.12.1"
deadpool-postgres = { version = "0.14.0", features = ["serde"] }
futures = "0.3.31"
git2 = "0.19.0"
glob = "0.3.1"
graphql_client = { version = "0.14.0", features = ["reqwest"] }
hex = "0.4.3"
http = "1.2.0"
hyper = "1.5.1"
lazy_static = "1.5.0"
metrics = "0.24.1"
metrics-exporter-prometheus = "0.16.0"
mime = "0.3.17"
mockall = "0.13.1"
mockito = "1.6.1"
octorust = "0.3.2"
openssl = { version = "0.10.68", features = ["vendored"] }
postgres-openssl = "0.5.0"
postgres-types = { version = "0.2.8", features = ["derive"] }
predicates = "3.1.2"
regex = "1.11.1"
reqwest = { version = "0.12.9", features = ["json"] }
resvg = "0.27.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34"
serde_qs = "0.13.0"
sha2 = "0.10.8"
tempfile = "3.14.0"
tera = { version = "1.20.0", default-features = false }
time = { version = "0.3.37", features = [
"formatting",
"macros",
"parsing",
"serde",
] }
tiny-skia = "0.8.4"
tokio = { version = "1.42.0", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"time",
] }
tokio-postgres = { version = "0.7.12", features = [
"with-time-0_3",
"with-serde_json-1",
"with-uuid-1",
] }
tower = { version = "0.5.1", features = ["util"] }
tower-http = { version = "0.6.2", features = [
"auth",
"fs",
"set-header",
"trace",
] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }
usvg = "0.27.0"
uuid = { version = "1.11.0", features = ["serde"] }
which = "7.0.0"
wiremock = "0.6.2"