-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
82 lines (80 loc) · 2.05 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
[workspace]
resolver = "2"
members = [
"integrationos-api",
"integrationos-archiver",
"integrationos-cache",
"integrationos-domain",
"integrationos-event",
"integrationos-gateway",
"integrationos-database",
"integrationos-unified",
"integrationos-watchdog",
]
[workspace.dependencies]
anyhow = "1.0.75"
async-recursion = "1.0.5"
async-trait = "0.1.74"
axum = { version = "0.7", features = ["macros"] }
base64 = "0.21.5"
base64ct = { version = "1.6.0", features = ["alloc"] }
bson = "2.7.0"
chrono = { version = "0.4.31", features = ["serde"] }
convert_case = "0.6.0"
dotenvy = "0.15.7"
envconfig = "0.10.0"
fake = { version = "2.9.2", features = [
"uuid",
"derive",
"dummy",
"chrono",
"rand_core",
"http",
"serde_json",
"semver",
] }
futures = "0.3.28"
futures-util = "0.3.28"
handlebars = "4.4.0"
http = "1.1.0"
http-serde-ext = "1.0.2"
js-sandbox-ios = "0.1.1"
jsonpath_lib = "0.3.0"
jsonwebtoken = "8.3.0"
kube = "0.95.0"
k8s-openapi = "0.23.0"
mockito = "1.2.0"
moka = { version = "0.12.4", features = ["future"] }
mongodb = "2.8.0"
openapiv3 = { version = "2.0.0", features = ["skip_serializing_defaults"] }
rand = "0.8.5"
redis = { version = "0.27", features = ["connection-manager", "tokio-comp"] }
reqwest = { version = "0.12.7", features = [
"json",
"rustls-tls",
], default-features = false }
semver = { version = "1.0.20", features = ["serde"] }
serde = { version = "1.0.189", features = ["derive", "rc"] }
serde_json = "1.0.107"
schemars = "0.8.16"
sha2 = "0.10.6"
strum = { version = "0.25", features = ["derive"] }
testcontainers-modules = "0.3"
thiserror = "1.0.56"
tokio = { version = "1.33.0", features = [
"macros",
"rt-multi-thread",
"time",
"sync",
] }
tower-http = { version = "0.5", features = [
"trace",
"cors",
"sensitive-headers",
] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
uuid = { version = "1.5.0", features = ["v4", "serde"] }
validator = { version = "0.16.1", features = ["derive"] }
[profile.release]
lto = "thin"