├── .config ├── spellcheck.toml └── trauma.dic ├── .editorconfig ├── .github ├── .kodiak.toml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── help_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── labels.yml ├── stale.yml └── workflows │ └── ci-rust.yml ├── .gitignore ├── .markdownlint.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── SLSA.md ├── assets ├── fading-bars.png └── pip-style.png ├── examples ├── simple.rs ├── with-authentication.rs ├── with-path-as-filename.rs ├── with-range-error-handling.rs ├── with-report.rs ├── with-resume.rs └── with-style.rs ├── justfile └── src ├── download.rs ├── downloader.rs └── lib.rs /.config/spellcheck.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.config/spellcheck.toml -------------------------------------------------------------------------------- /.config/trauma.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.config/trauma.dic -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.github/.kodiak.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.github/ISSUE_TEMPLATE/help_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci-rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.github/workflows/ci-rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/README.md -------------------------------------------------------------------------------- /SLSA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/SLSA.md -------------------------------------------------------------------------------- /assets/fading-bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/assets/fading-bars.png -------------------------------------------------------------------------------- /assets/pip-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/assets/pip-style.png -------------------------------------------------------------------------------- /examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/examples/simple.rs -------------------------------------------------------------------------------- /examples/with-authentication.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/examples/with-authentication.rs -------------------------------------------------------------------------------- /examples/with-path-as-filename.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/examples/with-path-as-filename.rs -------------------------------------------------------------------------------- /examples/with-range-error-handling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/examples/with-range-error-handling.rs -------------------------------------------------------------------------------- /examples/with-report.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/examples/with-report.rs -------------------------------------------------------------------------------- /examples/with-resume.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/examples/with-resume.rs -------------------------------------------------------------------------------- /examples/with-style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/examples/with-style.rs -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/justfile -------------------------------------------------------------------------------- /src/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/src/download.rs -------------------------------------------------------------------------------- /src/downloader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/src/downloader.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgreinho/trauma/HEAD/src/lib.rs --------------------------------------------------------------------------------