-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 739 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (28 loc) · 739 Bytes
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
[package]
name = "hum"
version = "0.1.0"
edition = "2021"
description = "A minimal, ad-free terminal music player. No API keys. No subscriptions. Just music."
license = "MIT"
repository = "https://github.com/Devendra116/hum"
keywords = ["music", "terminal", "tui", "youtube", "player"]
categories = ["command-line-utilities", "multimedia::audio"]
[[bin]]
name = "hum"
path = "src/main.rs"
[dependencies]
ratatui = "0.28"
crossterm = "0.28"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dirs = "5"
clap = { version = "4", features = ["derive"] }
rand = "0.8"
anyhow = "1"
unicode-width = "0.1"
[profile.release]
opt-level = "z"
lto = true
strip = true
codegen-units = 1