1 个不稳定版本
0.1.2 | 2023年11月24日 |
---|---|
0.1.1 |
|
0.1.0 |
|
#41 in #internet
在 2 crate 中使用
6KB
67 行
NetGet
NetGet是一个用于从互联网下载文件的库,它还支持自定义进度条样式!
示例
fn main() {
let url = "https://releases.ubuntu.com/22.04.3/ubuntu-22.04.3-desktop-amd64.iso";
let destination = std::env::current_dir().unwrap().display().to_string(); // The destination path for the file.
netget::download_file(url, &destination, &netget::ProgressBarConfig::default()).unwrap();
}
依赖关系
~7–22MB
~286K SLoC