37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "lyrica"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "AGPLv3"
|
|
authors = ["Michael Wain <alterwain@protonmail.com>"]
|
|
|
|
[dependencies]
|
|
chrono = "0.4.39"
|
|
rusb = "0.9.4"
|
|
dirs = "6.0.0"
|
|
toml = "0.8.20"
|
|
serde = "1.0.217"
|
|
serde_json = "1.0"
|
|
serde-xml-rs = "0.6.0"
|
|
regex = "1.11.1"
|
|
ratatui = { version = "0.29.0", features = ["all-widgets"] }
|
|
color-eyre = "0.6.3"
|
|
crossterm = { version = "0.28.1", features = ["event-stream"] }
|
|
futures = "0.3"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-util = { version = "0.7.12", features = ["codec"] }
|
|
soundcloud = { version = "0.1.11", git = "https://gitea.awain.net/alterwain/soundcloud_api.git" }
|
|
youtube-api = { version = "0.1.1", git = "https://gitea.awain.net/alterwain/youtube_api.git" }
|
|
itunesdb = { version = "0.1.99", git = "https://gitea.awain.net/alterwain/ITunesDB.git" }
|
|
rand = "0.8.5"
|
|
tui-big-text = "0.7.1"
|
|
throbber-widgets-tui = "0.8.0"
|
|
audiotags = "0.5.0"
|
|
image = "0.25.5"
|
|
twox-hash = "2.1.0"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "s"
|
|
lto = true
|
|
codegen-units = 1 |