-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
84 lines (82 loc) · 2.1 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
[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.93"
async-recursion = "1.1.1"
async-trait = "0.1.83"
axum = { version = "0.7", features = ["macros"] }
base64 = "0.21.7"
base64ct = { version = "1.6.0", features = ["alloc"] }
bson = "2.13.0"
chrono = { version = "0.4.38", features = ["serde"] }
convert_case = "0.6.0"
dotenvy = "0.15.7"
envconfig = "0.10.0"
fake = { version = "2.10.0", features = [
"uuid",
"derive",
"dummy",
"chrono",
"rand_core",
"http",
"serde_json",
"semver",
] }
futures = "0.3.31"
futures-util = "0.3.31"
handlebars = "4.5.0"
http = "1.1.0"
http-serde-ext-ios = "1.0.0"
js-sandbox-ios = "0.2.0"
jsonpath_lib = "0.3.0"
jsonwebtoken = "8.3.0"
kube = "0.95.0"
k8s-openapi = "0.23.0"
mockito = "1.6.1"
moka = { version = "0.12.8", features = ["future"] }
mongodb = "3.1.0"
num_cpus = "1"
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.9", features = [
"json",
"rustls-tls",
], default-features = false }
semver = { version = "1.0.23", features = ["serde"] }
serde = { version = "1.0.215", features = ["derive", "rc"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34"
schemars = "0.8.21"
sha2 = "0.10.8"
strum = { version = "0.25", features = ["derive"] }
testcontainers-modules = "0.3"
thiserror = "1.0.69"
tokio = { version = "1.41.1", 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.18", features = ["env-filter"] }
uuid = { version = "1.11.0", features = ["v4", "serde"] }
validator = { version = "0.16.1", features = ["derive"] }
[profile.release]
lto = "thin"