-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (43 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
52 lines (43 loc) · 1.04 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
[package]
name = "rating-exchange-bot"
version = "0.3.3"
edition = "2024"
[dependencies]
serde = { version = "1.0.228", features = ["derive"] }
anyhow = "1.0.102"
thiserror = "2.0.18"
async-trait = "0.1.89"
dotenvy = "0.15.7"
envy = "0.4.2"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "fmt"] }
time = "0.3.47"
regex = "1.12.3"
lazy-regex = "3.6.0"
deunicode = "1.6.2"
strum = { version = "0.28.0", features = ["derive"] }
bimap = "0.6.3"
tokio = { version = "1.52.1", features = ["rt-multi-thread", "signal"] }
sqlx = { version = "0.8.6", features = [
"runtime-tokio-native-tls",
"sqlite",
"migrate",
"time",
"macros",
] }
serenity = { version = "0.12.5", default-features = false, features = [
"client",
"gateway",
"model",
"native_tls_backend",
"cache",
] }
poise = "0.6.2"
indoc = "2.0.7"
[dev-dependencies]
test-log = { version = "0.2.20", default-features = false, features = [
"trace",
] }
map-macro = "0.3.0"
[profile.dev.package.sqlx-macros]
opt-level = 3