Files
furumi_tui/Cargo.toml
T

47 lines
1.8 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-07-27 23:37:46 +01:00
version = "0.2.0"
2026-06-10 16:11:09 +01:00
edition = "2024"
2026-07-26 03:51:36 +03:00
rust-version = "1.97"
2026-07-26 02:07:07 +03:00
description = "A federated P2P player for personal music libraries"
license = "WTFPL"
2026-06-10 16:11:09 +01:00
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"
2026-07-21 00:12:45 +03:00
blake3 = "1"
2026-06-10 16:11:09 +01:00
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", rev = "8de7d1292708fa0b225e5a4a9d5ab4f0676202d3" }
2026-06-10 16:11:09 +01:00
ratatui = "0.30.1"
2026-07-23 18:48:58 +03:00
rhai = { version = "1", features = ["sync"] }
2026-06-10 16:11:09 +01:00
rodio = { version = "0.22.2", default-features = false, features = ["playback", "mp3", "flac", "vorbis", "wav", "symphonia-aac", "symphonia-isomp4", "symphonia-alac"] }
2026-07-17 15:29:10 +03:00
rusqlite = { version = "0.32", features = ["bundled", "functions"] }
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-07-24 05:19:28 +03:00
windows-sys = { version = "0.61.2", features = ["Win32_Foundation", "Win32_UI_WindowsAndMessaging", "Win32_System_LibraryLoader", "Win32_Graphics_Gdi", "Win32_System_Console", "Win32_System_Pipes"] }
2026-06-10 17:58:55 +01:00
[target."cfg(unix)".dependencies]
libc = "0.2.186"