-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 803 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 803 Bytes
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
[package]
name = "hm-discord-bot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
poise = "0.6.1" # https://github.com/serenity-rs/poise
tracing = "0.1.40" # https://github.com/tokio-rs/tracing
tracing-subscriber = "0.3.18"
tracing-appender = "0.2.3"
rolling-file = "0.2.0"
sqlx = { version = "0.7.3", features = [
"runtime-tokio",
"mysql",
"migrate",
"time"
] } # https://github.com/launchbadge/sqlx
redis = { version = "0.24.0", features = [
"tokio-comp",
] } # https://github.com/redis-rs/redis-rs
sha1 = "0.10.6"
hex = "0.4.3"
serial_test = "3.0.0"
time = "0.3.34"
once_cell = "1.19.0"
dotenvy = "0.15.7"