spotify-clone/backend-rust/Cargo.toml
Khoa Vo 023fee470a feat: center video player and improve lyrics functionality with Vietnamese support
- Center video player in full-screen mode (like album art)
- Add Plyr video player with proper sync and cleanup
- Improve lyrics functionality with multiple API sources (lyrics.ovh, LRCLIB, SimpMusic, ZingMP3)
- Add Vietnamese language detection for lyrics
- Add helpful links to ZingMP3/NhacCuaTui when lyrics not found
- Mobile UI improvements (gaps, settings panel removal, centered cover)
- Add origin parameter to YouTube embed for better security
- Fix TypeScript errors and improve code quality
2026-03-21 20:55:53 +07:00

20 lines
538 B
TOML

[package]
name = "backend-rust"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "backend-rust"
path = "src/main.rs"
[dependencies]
axum = "0.8.8"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.50.0", features = ["full"] }
tokio-util = { version = "0.7.18", features = ["io"] }
tower = { version = "0.5.3", features = ["util"] }
tower-http = { version = "0.6.8", features = ["cors", "fs"] }
urlencoding = "2.1.3"
futures = "0.3"
reqwest = { version = "0.12", features = ["json"] }