forked from phoxwupsh/turto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (53 loc) · 1.24 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
54
55
56
57
58
59
60
61
[package]
name = "turto"
version = "1.3.0"
edition = "2021"
authors = ["phoxwupsh"]
rust-version = "1.80"
license = "MIT"
repository = "https://github.com/phoxwupsh/turto"
description = "turto is a simple, easy-to-use and customizable Discord music bot, especially suitable for self-hosting."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dotenv = "0.15.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.2"
serde = "1.0.210"
serde_json = "1.0.128"
regex = "1.11.0"
toml = "0.8.19"
rand = "0.8.5"
sha256 = "1.5.0"
which = "6.0.3"
reqwest = "0.11.22"
poise = "0.6.1"
anyhow = "1.0.89"
tracing-appender = "0.2.3"
chrono = "0.4.38"
[dependencies.serenity]
version = "0.12.3"
features = [
"client",
"standard_framework",
"cache",
"voice",
"rustls_backend",
"collector",
]
[dependencies.tokio]
version = "1.40.0"
features = ["macros", "rt-multi-thread", "signal"]
[dependencies.songbird]
version = "0.4.6"
[dependencies.dashmap]
version = "6.1.0"
features = ["serde"]
[dependencies.symphonia]
version = "0.5.4"
features = ["mp3", "aac", "vorbis", "isomp4"]
[profile.release]
opt-level = 3
lto = true
strip = true
panic = "abort"