feat: 添加单曲信息获取和下载功能

- 新增 aria2 模块,实现下载功能- 新增 single 模块,实现单曲信息获取
- 新增 utils 模块,用于创建请求客户端
This commit is contained in:
2025-08-18 22:02:07 +08:00
commit b5aee397f8
7 changed files with 2071 additions and 0 deletions

11
Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[package]
name = "netease-downloader"
version = "0.1.0"
edition = "2024"
[dependencies]
tokio = { version = "1.47.1", default-features = false, features = ["rt-multi-thread", "macros", "time"] }
reqwest = { version = "0.12.23", default-features = false, features = ["rustls-tls", "json"] }
serde = { version = "1.0.219", default-features = false, features = ["std", "derive"] }
serde_json = { version = "1.0.142", default-features = false, features = ["std"] }
aria2-ws = "0.5.1"