This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
85 lines (74 loc) · 1.79 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
name = "hydrogen"
version = "0.0.1-alpha.8"
authors = ["Nashira Deer <[email protected]>"]
edition = "2021"
description = "An open-source music bot for Discord, powered by Lavalink."
readme = "README.md"
license = "GPL-3.0-only"
keywords = ["discord", "lavalink", "music"]
publish = false
[features]
default = ["builtin-language"]
# Enable the builtin default language. (default)
# Don't disable if you will build using the provided Dockerfile because the image willn't include the 'en-US' language file.
builtin-language = []
[dependencies]
async-trait = "0.1.68"
dashmap = "5.5.3"
futures = "0.3.28"
rand = "0.8.5"
regex = "1.10.3"
serde_json = "1.0.99"
tokio-native-tls = "0.3.1"
toml = "0.8.10"
tracing = "0.1.37"
[dependencies.async-tungstenite]
package = "async-tungstenite"
version = "0.25.0"
features = ["tokio-runtime", "tokio-native-tls"]
[dependencies.clap]
version = "4.5.1"
features = ["derive"]
[dependencies.hydrogen-i18n]
package = "hydrogen-i18n"
version = "2.0.0"
default-features = false
features = ["serenity"]
[dependencies.reqwest]
package = "reqwest"
version = "0.12.2"
default-features = false
features = ["native-tls", "json"]
[dependencies.serde]
package = "serde"
version = "1.0.160"
features = ["derive"]
[dependencies.serenity]
package = "serenity"
version = "0.12.0"
default-features = false
features = [
"builder",
"cache",
"client",
"gateway",
"http",
"model",
"utils",
"voice",
"native_tls_backend",
]
[dependencies.songbird]
package = "songbird"
version = "0.4.0"
default-features = false
features = ["gateway", "serenity", "native"]
[dependencies.tokio]
package = "tokio"
version = "1.27.0"
features = ["macros", "rt-multi-thread"]
[dependencies.tracing-subscriber]
package = "tracing-subscriber"
version = "0.3.17"
features = ["env-filter"]