-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
43 lines (36 loc) · 899 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
41
42
43
[workspace]
members = [
"cadency_core",
"cadency_codegen",
"cadency_commands",
"cadency_yt_playlist",
"cadency",
"examples/*"
]
resolver = "2"
[workspace.dependencies]
env_logger = "0.11.3"
log = "0.4.21"
thiserror = "1.0.59"
serde_json = "1.0.116"
derive_builder = "0.20.0"
[workspace.dependencies.serenity]
version = "0.12.1"
default-features = false
features = ["client", "gateway", "rustls_backend", "model", "voice", "cache"]
[workspace.dependencies.songbird]
version = "0.4.1"
features = ["builtin-queue"]
[workspace.dependencies.tokio]
version = "1.37.0"
features = ["macros", "rt-multi-thread"]
[workspace.dependencies.serde]
version = "1.0.198"
features = ["derive"]
[workspace.dependencies.reqwest]
version = "0.11.27"
default-features = false
features = ["rustls-tls", "json"]
[workspace.dependencies.symphonia]
version = "0.5.4"
features = ["all-formats"]