-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (35 loc) · 844 Bytes
/
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
[package]
name = "songbird-trivia"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
songbird = { version = ">=0.3.2", features = ["yt-dlp"] }
tracing = ">=0.1"
tracing-subscriber = ">=0.2"
tracing-futures = ">=0.2"
dotenv = ">=0.15.0"
regex = ">=1.7.3"
sqlx = { version = ">=0.6.2", features = [
"runtime-tokio-native-tls",
"sqlite",
"chrono",
"macros",
] }
rand = ">=0.8.5"
edit-distance = ">=2.1.0"
[dependencies.serenity]
version = ">=0.11.5"
features = [
"client",
"standard_framework",
"voice",
"rustls_backend",
"collector",
]
[dependencies.tokio]
version = ">=1.27.0"
features = ["macros", "rt-multi-thread", "signal"]
[dependencies.rspotify]
version = ">=0.11.6"
features = ["dotenv", "env-file"]