-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 778 Bytes
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 778 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
[package]
name = "parrot"
version = "1.6.0"
authors = ["aquelemiguel"]
edition = "2021"
rust-version = "1.83"
description = "A Discord music bot built in Rust"
repository = "https://github.com/aquelemiguel/parrot"
license = "MIT"
keywords = ["discord", "music-bot", "rust"]
[dependencies]
dotenvy = "0.15.7"
lazy_static = "1.4.0"
rand = "0.8.5"
regex = "1.5.5"
reqwest = "0.12"
rspotify = "0.13"
serde_json = "1.0.79"
url = "2.3.1"
serde = "1.0.152"
[dependencies.songbird]
version = "0.5"
features = ["builtin-queue"]
[dependencies.serenity]
version = "0.12"
default-features = false
features = [
"cache",
"collector",
"client",
"gateway",
"model",
"rustls_backend",
"voice",
]
[dependencies.tokio]
version = "1.17.0"
features = ["macros", "rt-multi-thread"]