-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCargo.toml
58 lines (44 loc) · 1.25 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
[package]
edition = "2021"
name = "ytermusic"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# --- YT Download ---
rusty_ytdl = { git = "https://github.com/Mithronn/rusty_ytdl/", branch = "main", features = ["rustls-tls", "search", "live"], default-features = false}
ytpapi2 = { path = "./ytpapi2" }
# --- Threading & Sync ---
flume = "0.11.0"
once_cell = "1.19.0"
tokio = { version = "1.36.0", features = ["rt-multi-thread"] }
# --- Encoding ---
bincode = { version = "1.3.3" }
directories = "5.0.1"
rand = "0.8.5"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
urlencoding = "2.1.3"
varuint = "0.7.1"
# --- UI ---
crossterm = "0.27.0"
ratatui = { version = "0.26.1", features = ["serde"] }
# --- Player ---
player = { path = "player" }
# --- Media Control ---
souvlaki = "0.7.3"
# --- Alloc ---
mimalloc = { version = "0.1.39", default-features = false }
# --- Config ---
toml = "0.8.11"
# --- Logging ---
log = "0.4.21"
# -- Cookies auto retreival --
rookie = "0.5.2"
[target."cfg(target_os = \"windows\")".dependencies]
raw-window-handle = "0.4.3"
winit = "0.26.1"
[profile.release]
codegen-units = 1
debug = true
lto = true
opt-level = 3