forked from Discord-TTS/Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
82 lines (69 loc) · 1.87 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
[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
[profile.release]
lto = "thin"
[dependencies]
serde = "1"
regex = "1"
toml = "0.5"
rand = "0.8"
anyhow = "1"
strfmt = "0.2"
indexmap = "1"
tracing = "0.1"
gettext = "0.4"
linkify = "0.9"
strsim = "0.10"
once_cell = "1"
sysinfo = "0.25"
itertools = "0.10"
num-format = "0.4"
parking_lot = "0.12"
const_format = "0.2"
strum_macros = "0.24"
generic-array = "0.14"
[dependencies.symphonia]
git = "https://github.com/FelixMcFelix/Symphonia"
features = ["mp3", "ogg", "wav", "pcm"]
branch = "songbird-fixes"
default-features = false
[dependencies.sqlx]
version = "0.6"
default-features = false
features = ["macros", "postgres", "runtime-tokio-rustls"]
[dependencies.reqwest]
version = "0.11"
default-features = false
features = ["rustls-tls"]
[dependencies.tokio]
version = "1"
features = ["rt-multi-thread", "signal", "parking_lot"]
[dependencies.dashmap]
version = "5"
default-features = false
[dependencies.gnomeutils]
git = "https://github.com/GnomedDev/GnomeUtils"
features = ["error_handling", "help_command", "analytics", "i18n", "bot_list", "logging", "songbird"]
branch = "personal"
[dependencies.serenity_feature_only]
git = "https://github.com/GnomedDev/serenity"
features = ["unstable_discord_api"]
default-features = false
package = "serenity"
branch = "personal"
[dependencies.poise]
git = "https://github.com/GnomedDev/poise"
features = ["cache"]
branch = "personal"
[dependencies.songbird]
git = "https://github.com/GnomedDev/songbird"
features = ["builtin-queue"]
branch = "symphonia-personal"
[patch."https://github.com/serenity-rs/serenity"]
serenity = {git = "https://github.com/GnomedDev/serenity", branch = "personal"}
[patch.crates-io."serenity"]
git = "https://github.com/GnomedDev/serenity"
branch = "personal"