-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (26 loc) · 958 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
[package]
name = "destiny"
version = "0.1.0"
edition = "2024"
authors = ["Nguyễn Thế Hưng <kori@tretrauit.me>"]
description = "A music bot for Discord written in Rust"
readme = "README.md"
homepage = "https://github.com/teppyboy/destiny"
repository = "https://github.com/teppyboy/destiny"
license = "AGPL-3.0-or-later"
keywords = ["discord", "music", "bot", "async", "rust"]
[dependencies]
chrono = "0.4.39"
dotenvy = "0.15.7"
log = "0.4.22"
poise = "0.6.1"
reqwest = "0.11.27"
serde = { version = "1.0.216", features = ["derive"] }
serenity = { version = "0.12.4", features = ["full"] }
songbird = { version = "0.4.6", features = ["builtin-queue", "gateway", "serenity", "simd-json"] }
symphonia = { version = "0.5.4", features = ["aac", "mp3", "isomp4", "alac", "opt-simd"] }
tokio = { version = "1.42.0", features = ["full"] }
toml = "0.8.19"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
uuid = "1.11.0"