wuwa-downloader/Cargo.toml
Yuhki f71d6d5d6c major downloader improvements
- Added support for multiple CDN fallbacks from index.json configuration
- Implemented GZIP response handling for all requests
- Added version selection menu via GitHub Gist index
- Improved error handling and logging system
- Added progress tracking in window title
- Removed file count from console output (kept in title only)
- Enhanced download reliability with retries and checksum verification
- Added proper cleanup on Ctrl+C interrupt
- Refactored code structure for better maintainability
2025-03-25 14:48:00 +01:00

15 lines
No EOL
304 B
TOML

[package]
name = "wuwa-downloader"
version = "0.1.0"
edition = "2024"
[dependencies]
colored = "3.0.0"
md-5 = "0.10.6"
reqwest = { version = "0.12.15", features = ["blocking", "json"] }
serde_json = "1.0.140"
serde = "1.0.219"
winconsole = "0.11.1"
ctrlc = "3.4.5"
shellexpand = "3.1.0"
flate2 = "1.1.0"