-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
63 lines (58 loc) · 1.77 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
[package]
name = "nightingale"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum-server = { version = "0.6.0", features = ["tls-rustls"]}
axum = { version = "0.7", features = ["json", "ws"] }
tower = "0.4"
futures-util = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7.10"
futures = "0.3"
thiserror = "1"
dashmap = "6.0.1"
async-trait = "0.1.77"
uuid = { version = "1.6.1", features = ["v4", "serde"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tungstenite = "0.21.0"
parking_lot = "0.12.1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
typemap_rev = "0.3"
ipnet = { version = "2.9.0", features = ["serde"]}
prometheus-client = "0.22"
#prometheus = "0.13.4"
sysinfo = "0.30"
const_format = "0.2.31"
which = "6.0.0"
regex = "1.10.3"
toml = "0.8.12"
bytes = { version = "1.6.0", features = ["serde"] }
tracing-appender = "0.2.3"
tower-http = { version = "0.5.2", features = ["trace"] }
hex = "0.4.3"
rand = "0.8.5"
cbc = "0.1.2"
blowfish = "0.9.1"
phf = { version = "0.11.2", features = ["macros", "serde"] }
urlencoding = "2.1.3"
md5 = "0.7.0"
tracing-loki = { version = "0.2.5", features = ["rustls", "compat-0-2-1"], default-features = false }
base64 = "0.22.1"
[dependencies.symphonia]
version = "0.5.3"
features = ["all"]
[dependencies.songbird]
git = "https://github.com/serenity-rs/songbird.git"
branch = "next"
#version = "0.4.0"
default-features = false
features = ["driver", "gateway", "rustls", "tungstenite"]
[dependencies.rusty_ytdl]
git = "https://github.com/Mithronn/rusty_ytdl.git"
default-features = false
features = ["search", "live", "rustls-tls"]