it compiles

This commit is contained in:
2026-03-05 23:02:13 +01:00
parent 8a7acd6d5b
commit 4fec224769
4 changed files with 450 additions and 1 deletions

30
Cargo.toml Normal file
View File

@@ -0,0 +1,30 @@
[package]
name = "djdeck"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "djdeck"
path = "src/main.rs"
[dependencies]
ratatui = "0.30"
crossterm = "0.29"
pipewire = "0.9.2"
symphonia = { version = "0.5", features = ["mp3", "flac", "ogg", "wav", "aac"] }
rosc = "0.10"
tokio = { version = "1", features = ["full"] }
crossbeam-channel = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
dirs = "5"
walkdir = "2"
parking_lot = "0.12"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1