-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (43 loc) · 915 Bytes
/
Cargo.toml
File metadata and controls
51 lines (43 loc) · 915 Bytes
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
[package]
name = "skybot"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.21.2", features = ["macros", "rt-multi-thread", "signal"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.48"
rand = "0.8.4"
chrono = "0.4"
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-futures = "0.2"
[dependencies.serenity]
default-features = false
features = [
"builder",
"chrono",
"client",
"cache",
"collector",
"framework",
"gateway",
"http",
"model",
"standard_framework",
"utils",
"rustls_backend",
"voice"
]
version = "0.11"
[dependencies.songbird]
version = "0.3.0"
features = ["default", "builtin-queue", "yt-dlp"]
[profile.dev]
opt-level = 3
[profile.release]
opt-level = 3
lto = "thin"
[build]
opt-level = 3
lto = "thin"