aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | (cargo-release) version 0.13.0v0.13.0Sven-Hendrik Haase2021-03-284-4/+7
| |
* | Add README instructions for using shell completionsSven-Hendrik Haase2021-03-281-0/+13
| |
* | Update features listSven-Hendrik Haase2021-03-281-1/+3
| |
* | Update READMESven-Hendrik Haase2021-03-281-0/+3
| |
* | Don't explicitly specify all the patch versionsSven-Hendrik Haase2021-03-282-23/+22
| | | | | | | | This should in theory allow us to have more overlaps between sub-dependencies and thus reduce binary size.
* | Bump depsSven-Hendrik Haase2021-03-283-13/+14
| |
* | Refuse to start without explicit path if not attached to interactive terminalSven-Hendrik Haase2021-03-287-39/+69
| |
* | Change start message without arguments to be a bit more clearSven-Hendrik Haase2021-03-282-4/+6
| |
* | Fix testsSven-Hendrik Haase2021-03-281-2/+3
| |
* | Change default log level to WarnSven-Hendrik Haase2021-03-281-1/+1
| |
* | Better message for when provided index file doesn't existSven-Hendrik Haase2021-03-281-3/+4
| |
* | Print supported shells for completions in help commandSven-Hendrik Haase2021-03-281-1/+1
| |
* | Refactor and separate out arg handling and config handlingSven-Hendrik Haase2021-03-282-91/+94
| |
* | Add CHANGELOG entry for shell completionsSven-Hendrik Haase2021-03-281-0/+1
| |
* | Merge pull request #482 from rouge8/shell-completionsSven-Hendrik Haase2021-03-283-9/+45
|\ \ | |/ |/| Generate completions with `miniserve --print-completions <shell>`
| * Generate completions with `miniserve --print-completions <shell>`Andy Freeland2021-03-283-9/+45
| | | | | | | | | | | | | | | | This patch adds a `--print-completions` option to generate shell completion files at runtime. This ensures the completions are always up to date. Fixes #377.
* | (cargo-release) start next development iteration 0.12.2-alpha.0Sven-Hendrik Haase2021-03-272-2/+2
| |
* | (cargo-release) version 0.12.1v0.12.1Sven-Hendrik Haase2021-03-274-4/+7
| |
* | Add CHANGELOG entry for FreeBSD entriesSven-Hendrik Haase2021-03-271-0/+1
| |
* | Merge pull request #483 from svenstaro/try-freebsd-supportSven-Hendrik Haase2021-03-272-0/+11
|\ \ | | | | | | Try to add FreeBSD support
| * | Re-add publish instructionsSven-Hendrik Haase2021-03-271-1/+26
| | |
| * | Don't run upx for FreeBSDSven-Hendrik Haase2021-03-271-2/+2
| | |
| * | Add Cross.toml for FreeBSDSven-Hendrik Haase2021-03-261-0/+3
| | |
| * | Try to add freebsd supportSven-Hendrik Haase2021-03-261-26/+9
|/ /
* | Add CHANGELOG entry for PR 480Sven-Hendrik Haase2021-03-261-0/+1
| |
* | Merge pull request #480 from rouge8/qr-code-random-routeSven-Hendrik Haase2021-03-261-1/+1
|\ \ | | | | | | Fix QR code display when using --random-route
| * | Fix QR code display when using --random-routeAndy Freeland2021-03-261-1/+1
| |/ | | | | | | | | Previously the QR code would not display because `/` is a 404 when using `--random-route`.
* / Bump depsSven-Hendrik Haase2021-03-261-36/+52
|/
* Merge pull request #475 from svenstaro/dependabot/cargo/serde-1.0.125dependabot-preview[bot]2021-03-261-4/+4
|\
| * Bump serde from 1.0.124 to 1.0.125dependabot-preview[bot]2021-03-261-4/+4
| | | | | | | | | | | | | | Bumps [serde](https://github.com/serde-rs/serde) from 1.0.124 to 1.0.125. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.124...v1.0.125) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | Merge pull request #473 from svenstaro/dependabot/cargo/actix-web-httpauth-0.5.1Sven-Hendrik Haase2021-03-262-16/+8
|\ \ | |/ |/| Bump actix-web-httpauth from 0.5.0 to 0.5.1
| * Bump actix-web-httpauth from 0.5.0 to 0.5.1dependabot-preview[bot]2021-03-262-16/+8
| | | | | | | | | | | | | | Bumps [actix-web-httpauth](https://github.com/actix/actix-extras) from 0.5.0 to 0.5.1. - [Release notes](https://github.com/actix/actix-extras/releases) - [Commits](https://github.com/actix/actix-extras/compare/cors-0.5.0...cors-v0.5.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | Merge pull request #472 from svenstaro/dependabot/cargo/rstest-0.7.0Sven-Hendrik Haase2021-03-262-8/+50
|\ \ | |/ |/| Bump rstest from 0.6.4 to 0.7.0
| * Bump rstest from 0.6.4 to 0.7.0dependabot-preview[bot]2021-03-262-8/+50
|/ | | | | | | | Bumps [rstest](https://github.com/la10736/rstest) from 0.6.4 to 0.7.0. - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/0.6.4...0.7.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* Merge pull request #481 from rouge8/fix-ciSven-Hendrik Haase2021-03-261-2/+2
|\ | | | | Fix CI on Rust nightly by bumping standback
| * Fix CI on Rust nightly by bumping standbackAndy Freeland2021-03-261-2/+2
|/ | | | | | | | | | | | | | | | | | | | | | | https://github.com/jhpratt/standback/releases/tag/v0.2.17 Previously building would fail with: ``` error[E0432]: unresolved import `core::task::Wake` Error: --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/standback-0.2.16/src/lib.rs:520:13 | 520 | pub use core::task::Wake; | ^^^^^^^^^^^^---- | | | | | help: a similar name exists in the module (notice the capitalization): `wake` | no `Wake` in `task` error: aborting due to previous error Error: aborting due to previous error For more information about this error, try `rustc --explain E0432`. error: could not compile `standback` Error: could not compile `standback` ```
* (cargo-release) start next development iteration 0.12.1-alpha.0Sven-Hendrik Haase2021-03-202-2/+2
|
* (cargo-release) version 0.12.0v0.12.0Sven-Hendrik Haase2021-03-204-4/+7
|
* Add CHANGELOG entry for failure->thiserror switchSven-Hendrik Haase2021-03-201-0/+1
|
* Switch from failure to thiserrorSven-Hendrik Haase2021-03-203-122/+20
|
* Merge pull request #471 from svenstaro/show-hiddenSven-Hendrik Haase2021-03-206-29/+139
|\ | | | | Show hidden
| * Add negative test for hidden directoriesSven-Hendrik Haase2021-03-201-0/+31
| |
| * Finish up --hidden featureSven-Hendrik Haase2021-03-203-8/+4
| |
| * Add option to show hidden filesSven-Hendrik Haase2021-03-075-29/+112
| |
* | Bump depsSven-Hendrik Haase2021-03-201-68/+68
| |
* | Hide some annoying test outputSven-Hendrik Haase2021-03-201-0/+1
| |
* | Merge pull request #469 from svenstaro/dependabot/cargo/libflate-1.0.4dependabot-preview[bot]2021-03-171-2/+2
|\ \
| * | Bump libflate from 1.0.3 to 1.0.4dependabot-preview[bot]2021-03-171-2/+2
|/ / | | | | | | | | | | | | Bumps [libflate](https://github.com/sile/libflate) from 1.0.3 to 1.0.4. - [Release notes](https://github.com/sile/libflate/releases) - [Commits](https://github.com/sile/libflate/compare/1.0.3...1.0.4) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | Merge pull request #467 from svenstaro/dependabot/cargo/regex-1.4.5dependabot-preview[bot]2021-03-151-2/+2
|\ \
| * | Bump regex from 1.4.4 to 1.4.5dependabot-preview[bot]2021-03-151-2/+2
|/ / | | | | | | | | | | | | | | Bumps [regex](https://github.com/rust-lang/regex) from 1.4.4 to 1.4.5. - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.4.4...1.4.5) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>