forked from Discord-TTS/Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
96 lines (82 loc) · 2.13 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[package]
name = "discord_tts_bot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"tts_core",
"tts_commands",
"tts_events",
"tts_tasks",
"tts_migrations",
]
[profile.release]
lto = "thin"
panic = "abort"
debug = 2
[dependencies]
const_format = "0.2"
small-fixed-array = { version = "0.4.5", features = [
"nightly",
"to-arraystring",
] }
sqlx.workspace = true
serde.workspace = true
tokio.workspace = true
poise.workspace = true
anyhow.workspace = true
sysinfo.workspace = true
tracing.workspace = true
reqwest.workspace = true
dashmap.workspace = true
songbird.workspace = true
parking_lot.workspace = true
tts_core = { path = "tts_core" }
tts_tasks = { path = "tts_tasks" }
tts_events = { path = "tts_events" }
tts_commands = { path = "tts_commands" }
tts_migrations = { path = "tts_migrations" }
[dependencies.symphonia]
features = ["mp3", "ogg", "wav", "pcm"]
default-features = false
version = "0.5.3"
[workspace.dependencies]
regex = "1"
serde = "1"
anyhow = "1"
tracing = "0.1"
sysinfo = "0.30"
aformat = "0.1.3"
itertools = "0.13"
arrayvec = "0.7.4"
parking_lot = "0.12"
typesize = { version = "0.1.2", features = ["arrayvec"] }
to-arraystring = { version = "0.2.2", features = ["nonzero_impls"] }
[workspace.dependencies.sqlx]
version = "0.7"
default-features = false
features = ["macros", "postgres", "runtime-tokio-rustls"]
[workspace.dependencies.reqwest]
version = "0.12"
default-features = false
features = ["rustls-tls"]
[workspace.dependencies.tokio]
version = "1"
features = ["rt-multi-thread", "signal", "parking_lot"]
[workspace.dependencies.dashmap]
version = "5"
default-features = false
[workspace.dependencies.serenity]
git = "https://github.com/serenity-rs/serenity"
features = ["typesize", "temp_cache"]
default-features = false
branch = "next"
[workspace.dependencies.poise]
git = "https://github.com/serenity-rs/poise"
features = ["cache"]
branch = "serenity-next"
[workspace.dependencies.songbird]
git = "https://github.com/serenity-rs/songbird"
features = ["builtin-queue"]
branch = "serenity-next"