-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
68 lines (66 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
58
59
60
61
62
63
64
65
66
67
68
[workspace]
resolver = "2"
members = [
"clowarden-cli",
"clowarden-core",
"clowarden-server"
]
[workspace.package]
version = "0.1.3"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.82"
[workspace.dependencies]
anyhow = "1.0.93"
as-any = "0.3.1"
askama = "0.12.1"
async-trait = "0.1.83"
axum = { version = "0.7.9", features = ["macros"] }
base64 = "0.22.1"
cached = { version = "0.54.0", features = ["async"] }
clap = { version = "4.5.21", features = ["derive"] }
clowarden-core = { path = "../clowarden-core" }
deadpool-postgres = { version = "0.14.0", features = ["serde"] }
figment = { version = "0.10.19", features = ["yaml", "env"] }
futures = "0.3.31"
hmac = "0.12.1"
hex = "0.4.3"
lazy_static = "1.5.0"
mime = "0.3.17"
mockall = "0.13.1"
octorust = { git = "https://github.com/tegioz/third-party-api-clients.git" }
openssl = { version = "0.10.68", features = ["vendored"] }
pem = "3.0.4"
postgres-openssl = "0.5.0"
regex = "1.11.1"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_qs = "0.13.0"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
thiserror = "2.0.3"
time = { version = "0.3.36", features = [
"formatting",
"macros",
"parsing",
"serde",
] }
tokio = { version = "1.41.1", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
] }
tokio-postgres = { version = "0.7.12", features = [
"with-uuid-1",
"with-serde_json-1",
"with-time-0_3",
] }
tokio-util = { version = "0.7.12", features = ["rt"] }
tower = "0.5.1"
tower-http = { version = "0.6.2", features = ["auth", "fs", "set-header", "trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
uuid = { version = "1.11.0", features = ["serde", "v4"] }