-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Line Downloader | ||
Line Downloader 是一个使用 Rust 编写的简单异步下载器,在本地服务器上提供下载进度浏览。 | ||
|
||
# 许可证 | ||
遵循本项目使用的 Apache-2.0 协议 | ||
|
||
# 构建 | ||
直接使用 | ||
```Powershell | ||
cd LineDownloader | ||
``` | ||
``` | ||
cargo build --release | ||
``` | ||
|
||
# 使用 | ||
```Powershell | ||
LineDownloader.exe {downloads.json的绝对路径} {最大协程数(可选,默认为 32)} | ||
``` | ||
|
||
# downloads.json | ||
格式: | ||
``` | ||
filePath: { | ||
"url", | ||
"sha1" | ||
} | ||
``` | ||
|