tokio-dl-stream-to-disk
A micro-library for downloading from a URL and streaming it directly to the disk
```rust use std::path::Path; use tokiodlstreamtodisk::AsyncDownload;
async fn main() { if AsyncDownload::new("https://bit.ly/3yWXSOW", &Path::new("/tmp"), "5mbtest.bin").download(&None).await.isok() { println!("File downloaded successfully!"); } } ```
License: MIT