Files
furumi_tui/Cargo.toml
T

42 lines
1.5 KiB
TOML
Raw Normal View History

2026-06-10 16:11:09 +01:00
[package]
2026-06-10 16:23:20 +01:00
name = "furumi_tui"
2026-06-17 10:34:03 +01:00
version = "0.1.5"
2026-06-10 16:11:09 +01:00
edition = "2024"
2026-06-10 16:23:20 +01:00
[[bin]]
name = "furumi"
path = "src/main.rs"
2026-06-10 16:11:09 +01:00
[dependencies]
anyhow = "1.0.102"
crokey = "1.4.0"
crossterm = { version = "0.29.0", features = ["event-stream"] }
directories = "6.0.0"
futures-util = "0.3.32"
image = { version = "0.25.10", default-features = false, features = ["jpeg", "png", "webp", "gif", "bmp"] }
2026-07-16 20:29:51 +03:00
lofty = "0.22"
# P2P federation: library index in a shared DHT + audio streaming between
# peers (same protocol as furumi-fd).
music-dht = { git = "https://gt.hexor.cy/ab/frid.git" }
2026-06-10 16:11:09 +01:00
ratatui = "0.30.1"
rodio = { version = "0.22.2", default-features = false, features = ["playback", "mp3", "flac", "vorbis", "wav", "symphonia-aac", "symphonia-isomp4", "symphonia-alac"] }
2026-07-16 20:29:51 +03:00
rusqlite = { version = "0.39", features = ["bundled"] }
2026-06-10 16:11:09 +01:00
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
2026-06-10 16:23:20 +01:00
souvlaki = { version = "0.8.3", default-features = false, features = ["use_zbus"] }
2026-06-10 16:11:09 +01:00
thiserror = "2.0.18"
2026-07-16 20:29:51 +03:00
tokio = { version = "1.52.3", features = ["rt-multi-thread", "macros", "sync", "time", "fs", "io-util"] }
2026-06-10 16:11:09 +01:00
toml = "1.1.2"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
2026-06-10 23:46:19 +01:00
unicode-width = "0.2.2"
2026-06-10 16:11:09 +01:00
[target.'cfg(target_os="macos")'.dependencies]
core-foundation = "0.10.1"
2026-06-10 17:58:55 +01:00
[target."cfg(windows)".dependencies]
2026-06-10 18:27:22 +01:00
windows-sys = { version = "0.61.2", features = ["Win32_Foundation", "Win32_UI_WindowsAndMessaging", "Win32_System_LibraryLoader", "Win32_Graphics_Gdi"] }
2026-06-10 17:58:55 +01:00
[target."cfg(unix)".dependencies]
libc = "0.2.186"