forked from cncf/clowarden
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
67 lines (65 loc) · 1.66 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
[workspace]
resolver = "2"
members = [
"clowarden-cli",
"clowarden-core",
"clowarden-server"
]
[workspace.package]
version = "0.1.1"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.70"
[workspace.dependencies]
anyhow = "1.0.83"
as-any = "0.3.1"
askama = "0.12.1"
async-trait = "0.1.80"
axum = { version = "0.7.5", features = ["macros"] }
base64 = "0.22.1"
cached = { version = "0.51.3", features = ["async"] }
clap = { version = "4.5.4", features = ["derive"] }
clowarden-core = { path = "../clowarden-core" }
config = "0.13.4"
deadpool-postgres = { version = "0.13.2", features = ["serde"] }
futures = "0.3.30"
hmac = "0.12.1"
hex = "0.4.3"
lazy_static = "1.4.0"
mime = "0.3.17"
mockall = "0.12.1"
octorust = { git = "https://github.com/tegioz/third-party-api-clients.git" }
openssl = { version = "0.10.64", features = ["vendored"] }
pem = "3.0.4"
postgres-openssl = "0.5.0"
regex = "1.10.4"
serde = { version = "1.0.201", features = ["derive"] }
serde_json = "1.0.117"
serde_qs = "0.13.0"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
thiserror = "1.0.57"
time = { version = "0.3.36", features = [
"formatting",
"macros",
"parsing",
"serde",
] }
tokio = { version = "1.37.0", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
] }
tokio-postgres = { version = "0.7.10", features = [
"with-uuid-1",
"with-serde_json-1",
"with-time-0_3",
] }
tower = "0.4.13"
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"] }
uuid = { version = "1.8.0", features = ["serde", "v4"] }