-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (62 loc) · 1.97 KB
/
Cargo.toml
File metadata and controls
65 lines (62 loc) · 1.97 KB
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]
members = [
"crates/api",
"crates/common",
"crates/engine",
"crates/engines/generic",
"crates/telemetry",
]
resolver = "3"
[workspace.dependencies]
anyhow = "1.0.102"
async-nats = "0.44.2"
async-stream = "0.3.6"
async-trait = "0.1.89"
axum = { features = [ "macros" ], version = "0.8.8" }
axum-extra = { features = [ "query", "typed-header" ], version = "0.12.5" }
base64 = "0.22.1"
chrono = { features = [ "serde" ], version = "0.4.44" }
envy = "0.4.2"
futures = "0.3.32"
nix = { features = [ "process", "signal" ], version = "0.30" }
opentelemetry = { version = "0.27" }
opentelemetry-otlp = { features = [ "grpc-tonic", "tonic" ], version = "0.27" }
opentelemetry_sdk = { features = [ "rt-tokio" ], version = "0.27" }
redis = { features = [ "aio", "tokio-comp" ], version = "0.32.7" }
regex = "1.12.3"
serde = { features = [ "derive" ], version = "1.0.228" }
serde_json = "1.0"
serde_yaml = "0.9.34"
sqlx = { default-features = false, features = [
"chrono",
"derive",
"json",
"macros",
"postgres",
"runtime-tokio-rustls",
"uuid",
], version = "0.8.6" }
telemetry = { path = "crates/telemetry" }
thiserror = "2.0.18"
tokio = { features = [ "full" ], version = "1.50.0" }
tokio-stream = "0.1.18"
tower-http = { features = [ "cors", "trace" ], version = "0.6.8" }
tracing = "0.1.44"
tracing-opentelemetry = { version = "0.28" }
tracing-subscriber = { features = [ "env-filter", "json" ], version = "0.3.22" }
url = { features = [ "serde" ], version = "2.5.8" }
utoipa = { features = [ "axum_extras", "chrono", "uuid" ], version = "5.4.0" }
utoipa-swagger-ui = { features = [ "axum" ], version = "9" }
uuid = { features = [ "serde", "v7" ], version = "1.22.0" }
[workspace.lints.clippy]
cloned_instead_of_copied = "warn"
expect_used = "warn"
needless_pass_by_value = "warn"
redundant_closure_for_method_calls = "warn"
unwrap_used = "warn"
[workspace.lints.rust]
dead_code = "warn"
unsafe_code = "forbid"
unused_imports = "deny"
unused_must_use = "deny"
unused_variables = "warn"