-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (45 loc) · 1.35 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
[package]
name = "termusix"
version = "0.1.1"
edition = "2021"
license = "GPL-3.0-or-later"
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE"
]
homepage = "https://github.com/sumoduduk/termusix"
description = "A terminal-based music player with a user-friendly terminal UI, built with Rust."
repository = "https://github.com/sumoduduk/terminusdm"
keywords = [
"cli",
"terminal-ui",
"music-player",
]
categories = ["asynchronous", "command-line-utilities", "concurrency" ]
authors = ["Iqbal Abdurachman <email@abdurachmaniqbal.my.id>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eyre = "0.6.12"
rand = "0.8.5"
reqwest = { version = "0.12.5", features = ["json", "rustls-tls"], default-features= false }
rodio = { version = "0.19.0" , features = ["symphonia-isomp4"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.120"
tokio = { version = "1.38.0", features = ["full"] }
crossterm = { version = "0.27.0", features = ["event-stream"] }
futures = "0.3.30"
ratatui = {version = "0.27.0", features= ["unstable-widget-ref"]}
indexmap = { version = "2.2.6", features = ["serde"] }
tui-input = "0.9.0"
derivative = "2.2"
dirs = "5.0.1"
strum = "0.26.3"
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1
[lints.clippy]
single_match = "allow"