├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── imgs └── example.jpg └── src ├── cli ├── args.rs └── mod.rs ├── downloader ├── block.rs ├── download.rs ├── mod.rs ├── parse.rs ├── status.rs └── utils │ ├── mod.rs │ └── tools.rs └── main.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .vscode -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/README.md -------------------------------------------------------------------------------- /imgs/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/imgs/example.jpg -------------------------------------------------------------------------------- /src/cli/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/src/cli/args.rs -------------------------------------------------------------------------------- /src/cli/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod args; 2 | -------------------------------------------------------------------------------- /src/downloader/block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/src/downloader/block.rs -------------------------------------------------------------------------------- /src/downloader/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/src/downloader/download.rs -------------------------------------------------------------------------------- /src/downloader/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/src/downloader/mod.rs -------------------------------------------------------------------------------- /src/downloader/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/src/downloader/parse.rs -------------------------------------------------------------------------------- /src/downloader/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/src/downloader/status.rs -------------------------------------------------------------------------------- /src/downloader/utils/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod tools; 2 | -------------------------------------------------------------------------------- /src/downloader/utils/tools.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/src/downloader/utils/tools.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franticxx/dn/HEAD/src/main.rs --------------------------------------------------------------------------------