-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
52 lines (46 loc) · 1.11 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
[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"
]
[workspace.lints.clippy]
all = "deny"
nursery = "deny"
pedantic = "warn"
unwrap_used = "deny"
[workspace.lints.rust]
future_incompatible = "warn"
nonstandard_style = "warn"
[workspace.dependencies]
anyhow = "1.0.86"
arma-rs = { git = "https://github.com/brettmayson/arma-rs", features = ["uuid", "serde_json"] }
async-trait = "0.1.81"
axum = "0.7.5"
nats = { version = "0.25.0" }
reqwest = { version = "0.12.5", features = ["rustls-tls"] }
rsa = "0.9.6"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
serenity = { version = "0.12.2", default_features = false, features = ["rustls_backend"] }
sqlx = { version = "0.7.4" }
strum = "0.26.3"
time = "0.3.36"
tokio = "1.38.1"
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = "0.3.18"
uuid = "1.10.0"