-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (47 loc) · 1.05 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
[package]
name = "angybot"
version = "0.2.1"
authors = ["Stefano Pigozzi <[email protected]>"]
edition = "2021"
description = "A Discord bot for playing back music in funny ways"
readme = "README.md"
repository = "https://github.com/RYGhub/angybot"
license = "AGPL-3.0-or-later"
keywords = ["discord", "discord-bot"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dependencies.serde]
version = "^1.0.188"
features = ["derive"]
[dependencies.reqwest]
version = "^0.11.20"
features = ["json"]
[dependencies.serenity]
version = "~0.11.5"
default-features = false
features = [
"client",
"cache",
"gateway",
"rustls_backend",
"model",
"voice",
]
[dependencies.tokio]
version = "^1.6.1"
features = [
"full",
]
[dependencies.songbird]
version = "^0.3.2"
features = [
"serenity-rustls",
"yt-dlp",
]
[dependencies.log]
version = "^0.4.17"
[dependencies.pretty_env_logger]
version = "0.5.0"
[dependencies.lazy_static]
version = "^1.4.0"