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;
async fn main() { if tokiodlstreamtodisk::download("https://bit.ly/3yWXSOW", &Path::new("/tmp"), "5mbtest.bin").await.isok() { println!("File downloaded successfully!"); } } ```
License: MIT