[package]
name = "driftfm"
version = "0.1.3"
edition = "2021"
description = "A blazing-fast cyber-synthwave internet radio player & smart tape recorder TUI"
license = "MIT"
repository = "https://github.com/milgaj84/driftFM"
homepage = "https://github.com/milgaj84/driftFM"
readme = "README.md"
keywords = ["radio", "tui", "music", "streaming", "catppuccin"]
categories = ["command-line-utilities", "multimedia::audio"]
exclude = ["recordings/", "library.json", ".gitignore"]
[[bin]]
name = "driftfm"
path = "src/main.rs"
[dependencies]
ratatui = "0.30"
crossterm = { version = "0.29", features = ["event-stream"] }
tokio = { version = "1", features = ["full"] }
rodio = { version = "0.20", features = ["symphonia-all"] }
reqwest = { version = "0.12", features = ["json", "blocking"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
dirs = "6"
notify-rust = "4"
id3 = "1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true