-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
65 lines (63 loc) · 1.67 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
[workspace]
resolver = "2"
members = [
"clotributor-apiserver",
"clotributor-registrar",
"clotributor-tracker",
]
[workspace.package]
version = "1.0.0"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.81"
[workspace.dependencies]
anyhow = "1.0.92"
async-trait = "0.1.83"
axum = { version = "0.7.7", features = ["macros"] }
bincode = "1.3.3"
clap = { version = "4.5.20", features = ["derive"] }
config = "0.13.4"
deadpool = "0.12.1"
deadpool-postgres = { version = "0.14.0", features = ["serde"] }
futures = "0.3.31"
graphql_client = { version = "0.14.0", features = ["reqwest"] }
hex = "0.4.3"
http = "1.1.0"
hyper = "1.5.0"
lazy_static = "1.5.0"
mime = "0.3.17"
mockall = "0.13.0"
mockito = "1.5.0"
openssl = { version = "0.10.68", features = ["vendored"] }
postgres-openssl = "0.5.0"
postgres-types = { version = "0.2.8", features = ["derive"] }
regex = "1.11.1"
reqwest = { version = "0.12.9", features = ["json"] }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
serde_qs = "0.13.0"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
time = { version = "0.3.36", features = [
"formatting",
"macros",
"parsing",
"serde",
] }
tokio = { version = "1.41.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.5.2", features = ["fs", "set-header", "trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
uuid = { version = "1.11.0", features = ["serde"] }