-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (47 loc) · 1.18 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
[workspace]
resolver = "2"
members = [
"lib/bootstrap",
"lib/events",
"lib/meta",
"lib/model",
"lib/proc",
"bin/api",
"bin/bot",
"bin/calendar",
"bin/db",
"bin/docker",
"bin/executor",
"bin/hooks",
"bin/scheduler",
"bin/web",
"arma/server",
"utils/poll-runner",
#"utils/reachout",
]
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
unwrap_used = "deny"
[workspace.lints.rust]
future_incompatible = "warn"
nonstandard_style = "warn"
[workspace.dependencies]
anyhow = "1.0.94"
arma-rs = { version = "1.11.11", features = ["uuid", "serde_json"] }
async-trait = "0.1.83"
axum = "0.7.9"
nats = { version = "0.25.0" }
reqwest = { version = "0.12.9", features = ["rustls-tls"] }
rsa = "0.9.7"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
serenity = { version = "0.12.4", default-features = false, features = ["rustls_backend"] }
sqlx = { version = "0.8.2" }
strum = "0.26.3"
time = "0.3.37"
tokio = "1.42.0"
tracing = { version = "0.1.41", features = ["log"] }
tracing-subscriber = "0.3.19"
uuid = "1.11.0"