-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
103 lines (97 loc) · 2.17 KB
/
Cargo.toml
File metadata and controls
103 lines (97 loc) · 2.17 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[package]
name = "rustalink"
version = "1.3.0"
edition = "2024"
license = "Apache-2.0"
authors = ["appujet", "notdeltaxd", "contributors"]
repository = "https://github.com/bongodevs/Rustalink"
[dependencies]
base64 = "^0.22.1"
bytes = "1.11.1"
flume = "^0.11.1"
dashmap = "^6.1.0"
tracing = "^0.1.41"
futures = "^0.3.31"
async-trait = "^0.1.89"
serde_json = "^1.0.145"
byteorder = "^1.5.0"
regex = "^1.12.2"
ipnet = "2.11.0"
rand = "^0.8"
toml = "1.0.2"
davey = { git = "https://github.com/bongodevs/davey" }
audiopus = { git = "https://github.com/bongodevs/audiopus" }
xsalsa20poly1305 = "0.9.1"
aes = "0.8"
des = "0.8.1"
cipher = "0.5.0"
block-padding = "0.4.2"
hex = "0.4.3"
blowfish = "0.9"
md-5 = "0.10"
cbc = "0.1"
urlencoding = "2.1.3"
hmac = "0.12"
sha1 = "0.10"
sha2 = "0.10"
parking_lot = "0.12.5"
thiserror = "2.0.18"
sysinfo = "0.38.3"
perf_monitor = "0.2.1"
prometheus = "0.13"
tracing-log = "0.2"
tracing-subscriber = { version = "^0.3.20", features = [
"env-filter",
"registry",
"time",
"local-time",
] }
serde = { version = "^1.0.145", features = ["derive"] }
time = { version = "0.3", features = ["formatting", "macros", "local-offset"] }
symphonia = { version = "0.5.5", features = [
"aac",
"mp3",
"ogg",
"flac",
"wav",
"isomp4",
"mkv",
"alac",
] }
tokio-tungstenite = { version = "0.26.2", features = [
"rustls-tls-native-roots",
] }
tokio-util = { version = "0.7.13", features = ["codec"] }
uuid = { version = "1.21.0", features = ["v4", "serde"] }
reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls",
"stream",
"cookies",
"gzip",
"deflate",
] }
tokio = { version = "1.49.0", features = [
"tracing",
"macros",
"signal",
"rt-multi-thread",
] }
axum = { version = "0.8.1", features = ["ws"] }
tower-http = { version = "0.6.2", features = ["trace", "cors"] }
ctr = "0.9"
[profile.dev]
opt-level = 1
debug = true
incremental = true
overflow-checks = false
lto = false
codegen-units = 256
[profile.dev.package."*"]
opt-level = 3 # fully optimize all dependencies in dev mode
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
opt-level = 3
strip = true