From aed776ac49cb44705463d9e43c070dc56adaaae3 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Mon, 10 Jun 2024 00:38:45 +0200 Subject: Remove explicit dependency on http We now use the one supplied by actix-web. --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index b18b7e2..7cd503d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,6 @@ fast_qr = { version = "0.12", features = ["svg"] } futures = "0.3" grass = { version = "0.13", features = ["macro"], default-features = false } hex = "0.4" -http = "0.2" httparse = "1" if-addrs = "0.12" libflate = "2" -- cgit v1.2.3 From ae37a5799385d9e9d0b3647e2b4520782cd02d26 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Mon, 10 Jun 2024 00:44:09 +0200 Subject: Bump reqwest to v0.12 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 7cd503d..b99ae64 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ assert_fs = "1" predicates = "3" pretty_assertions = "1.2" regex = "1" -reqwest = { version = "0.11", features = ["blocking", "multipart", "rustls-tls"], default-features = false } +reqwest = { version = "0.12", features = ["blocking", "multipart", "rustls-tls"], default-features = false } rstest = "0.21" select = "0.6" url = "2" -- cgit v1.2.3 From 81df80c1c91f77847da9c8a4a71df51b8526392c Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Mon, 10 Jun 2024 01:06:16 +0200 Subject: Bump rustls to v0.23 --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index b99ae64..af9096a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,8 +47,8 @@ nanoid = "0.4" percent-encoding = "2" port_check = "0.2" regex = "1" -rustls = { version = "0.20", optional = true } -rustls-pemfile = { version = "1.0", optional = true } +rustls = { version = "0.23", optional = true } +rustls-pemfile = { version = "2", optional = true } serde = { version = "1", features = ["derive"] } sha2 = "0.10" simplelog = "0.12" @@ -65,7 +65,7 @@ default = ["tls"] # See also https://github.com/briansmith/ring/issues/1182 # and https://github.com/briansmith/ring/issues/562 # and https://github.com/briansmith/ring/issues/1367 -tls = ["rustls", "rustls-pemfile", "actix-web/rustls"] +tls = ["rustls", "rustls-pemfile", "actix-web/rustls-0_23"] [dev-dependencies] assert_cmd = "2" -- cgit v1.2.3 From a192279030f8317275aff120679c0a68c797c299 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Mon, 10 Jun 2024 01:15:33 +0200 Subject: Try to fix CI --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index af9096a..0717de4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ nanoid = "0.4" percent-encoding = "2" port_check = "0.2" regex = "1" -rustls = { version = "0.23", optional = true } +rustls = { version = "0.23", features = ["ring"], optional = true, default-features = false } rustls-pemfile = { version = "2", optional = true } serde = { version = "1", features = ["derive"] } sha2 = "0.10" -- cgit v1.2.3 From e9241ed0199c4f2e76d3f4143f131e01342c79e5 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Sat, 20 Jul 2024 14:58:00 +0200 Subject: Bump deps --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 0717de4..76e1252 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ strip = true [dependencies] actix-files = "0.6.5" -actix-multipart = "0.6" +actix-multipart = "0.7" actix-web = { version = "4", features = ["macros", "compress-brotli", "compress-gzip", "compress-zstd"], default-features = false } actix-web-httpauth = "0.8" alphanumeric-sort = "1" @@ -32,13 +32,13 @@ clap = { version = "4", features = ["derive", "cargo", "wrap_help", "deprecated" clap_complete = "4" clap_mangen = "0.2" colored = "2" -comrak = { version = "0.24", default-features = false } +comrak = { version = "0.26", default-features = false } fast_qr = { version = "0.12", features = ["svg"] } futures = "0.3" grass = { version = "0.13", features = ["macro"], default-features = false } hex = "0.4" httparse = "1" -if-addrs = "0.12" +if-addrs = "0.13" libflate = "2" log = "0.4" maud = "0.26" -- cgit v1.2.3 From cb495906b11c9638eb7a2707d12810482ac6e3f6 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Thu, 8 Aug 2024 05:22:13 +0200 Subject: Bump rstest --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 76e1252..f48b43e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,7 +74,7 @@ predicates = "3" pretty_assertions = "1.2" regex = "1" reqwest = { version = "0.12", features = ["blocking", "multipart", "rustls-tls"], default-features = false } -rstest = "0.21" +rstest = "0.22" select = "0.6" url = "2" -- cgit v1.2.3 From cc565be8f560172d9ed75b57ec3eaa65c78659ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Sep 2024 02:48:19 +0000 Subject: Bump the all-dependencies group with 10 updates Bumps the all-dependencies group with 10 updates: | Package | From | To | | --- | --- | --- | | [actix-web](https://github.com/actix/actix-web) | `4.8.0` | `4.9.0` | | [clap](https://github.com/clap-rs/clap) | `4.5.13` | `4.5.16` | | [clap_complete](https://github.com/clap-rs/clap) | `4.5.12` | `4.5.24` | | [comrak](https://github.com/kivikakk/comrak) | `0.26.0` | `0.27.0` | | [if-addrs](https://github.com/messense/if-addrs) | `0.13.2` | `0.13.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.205` | `1.0.209` | | [tokio](https://github.com/tokio-rs/tokio) | `1.39.2` | `1.40.0` | | [zip](https://github.com/zip-rs/zip2) | `2.1.6` | `2.2.0` | | [assert_cmd](https://github.com/assert-rs/assert_cmd) | `2.0.15` | `2.0.16` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.5` | `0.12.7` | Updates `actix-web` from 4.8.0 to 4.9.0 - [Release notes](https://github.com/actix/actix-web/releases) - [Changelog](https://github.com/actix/actix-web/blob/master/CHANGES.md) - [Commits](https://github.com/actix/actix-web/compare/web-v4.8.0...web-v4.9.0) Updates `clap` from 4.5.13 to 4.5.16 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.13...clap_complete-v4.5.16) Updates `clap_complete` from 4.5.12 to 4.5.24 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.12...clap_complete-v4.5.24) Updates `comrak` from 0.26.0 to 0.27.0 - [Release notes](https://github.com/kivikakk/comrak/releases) - [Changelog](https://github.com/kivikakk/comrak/blob/main/changelog.txt) - [Commits](https://github.com/kivikakk/comrak/compare/v0.26.0...v0.27.0) Updates `if-addrs` from 0.13.2 to 0.13.3 - [Release notes](https://github.com/messense/if-addrs/releases) - [Changelog](https://github.com/messense/if-addrs/blob/master/CHANGELOG.md) - [Commits](https://github.com/messense/if-addrs/compare/v0.13.2...v0.13.3) Updates `serde` from 1.0.205 to 1.0.209 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.205...v1.0.209) Updates `tokio` from 1.39.2 to 1.40.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.2...tokio-1.40.0) Updates `zip` from 2.1.6 to 2.2.0 - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v2.1.6...v2.2.0) Updates `assert_cmd` from 2.0.15 to 2.0.16 - [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/assert_cmd/compare/v2.0.15...v2.0.16) Updates `reqwest` from 0.12.5 to 0.12.7 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.5...v0.12.7) --- updated-dependencies: - dependency-name: actix-web dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: comrak dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: if-addrs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: zip dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: assert_cmd dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index f48b43e..cf574fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ clap = { version = "4", features = ["derive", "cargo", "wrap_help", "deprecated" clap_complete = "4" clap_mangen = "0.2" colored = "2" -comrak = { version = "0.26", default-features = false } +comrak = { version = "0.27", default-features = false } fast_qr = { version = "0.12", features = ["svg"] } futures = "0.3" grass = { version = "0.13", features = ["macro"], default-features = false } @@ -56,7 +56,7 @@ socket2 = "0.5" strum = { version = "0.26", features = ["derive"] } tar = "0.4" thiserror = "1" -tokio = { version = "1.35.1", features = ["fs"] } +tokio = { version = "1.40.0", features = ["fs"] } zip = { version = "2", default-features = false } [features] -- cgit v1.2.3 From 07af07c910172551fbde9bfed789805622af8859 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Thu, 12 Sep 2024 02:33:58 +0200 Subject: Bump deps --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index cf574fd..1bc2b8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ clap = { version = "4", features = ["derive", "cargo", "wrap_help", "deprecated" clap_complete = "4" clap_mangen = "0.2" colored = "2" -comrak = { version = "0.27", default-features = false } +comrak = { version = "0.28", default-features = false } fast_qr = { version = "0.12", features = ["svg"] } futures = "0.3" grass = { version = "0.13", features = ["macro"], default-features = false } -- cgit v1.2.3 From 8876500f3caa42b21771576367bf5426782da104 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Thu, 12 Sep 2024 04:13:16 +0200 Subject: Release miniserve version 0.28.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 1bc2b8a..60cdde9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniserve" -version = "0.27.1" +version = "0.28.0" description = "For when you really just want to serve some files over HTTP right now!" authors = ["Sven-Hendrik Haase ", "Boastful Squirrel "] repository = "https://github.com/svenstaro/miniserve" -- cgit v1.2.3 From b94e5932a5ee2a542ed177c1546f7118c0b2c13b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 02:38:15 +0000 Subject: Bump the all-dependencies group with 7 updates Bumps the all-dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [httparse](https://github.com/seanmonstar/httparse) | `1.9.4` | `1.9.5` | | [regex](https://github.com/rust-lang/regex) | `1.10.6` | `1.11.0` | | [rustls-pemfile](https://github.com/rustls/pemfile) | `2.1.3` | `2.2.0` | | [tar](https://github.com/alexcrichton/tar-rs) | `0.4.41` | `0.4.42` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.63` | `1.0.64` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.7` | `0.12.8` | | [rstest](https://github.com/la10736/rstest) | `0.22.0` | `0.23.0` | Updates `httparse` from 1.9.4 to 1.9.5 - [Release notes](https://github.com/seanmonstar/httparse/releases) - [Commits](https://github.com/seanmonstar/httparse/compare/v1.9.4...v1.9.5) Updates `regex` from 1.10.6 to 1.11.0 - [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.10.6...1.11.0) Updates `rustls-pemfile` from 2.1.3 to 2.2.0 - [Release notes](https://github.com/rustls/pemfile/releases) - [Commits](https://github.com/rustls/pemfile/compare/v/2.1.3...v/2.2.0) Updates `tar` from 0.4.41 to 0.4.42 - [Commits](https://github.com/alexcrichton/tar-rs/compare/0.4.41...0.4.42) Updates `thiserror` from 1.0.63 to 1.0.64 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.63...1.0.64) Updates `reqwest` from 0.12.7 to 0.12.8 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.7...v0.12.8) Updates `rstest` from 0.22.0 to 0.23.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/v0.22.0...v0.23.0) --- updated-dependencies: - dependency-name: httparse dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: rustls-pemfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: tar dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 60cdde9..8221e4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,7 +74,7 @@ predicates = "3" pretty_assertions = "1.2" regex = "1" reqwest = { version = "0.12", features = ["blocking", "multipart", "rustls-tls"], default-features = false } -rstest = "0.22" +rstest = "0.23" select = "0.6" url = "2" -- cgit v1.2.3 From 1a0e3c3a13f8eccfcda99632f842072e115ee22e Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Fri, 11 Oct 2024 05:23:26 +0200 Subject: Bump deps --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 8221e4c..0356e13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ clap = { version = "4", features = ["derive", "cargo", "wrap_help", "deprecated" clap_complete = "4" clap_mangen = "0.2" colored = "2" -comrak = { version = "0.28", default-features = false } +comrak = { version = "0.29", default-features = false } fast_qr = { version = "0.12", features = ["svg"] } futures = "0.3" grass = { version = "0.13", features = ["macro"], default-features = false } -- cgit v1.2.3 From bc972844ef4ff5c8de816459918cd2bb1aecb70b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 02:23:46 +0000 Subject: Bump the all-dependencies group with 7 updates Bumps the all-dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.89` | `1.0.91` | | [clap_complete](https://github.com/clap-rs/clap) | `4.5.33` | `4.5.36` | | [regex](https://github.com/rust-lang/regex) | `1.11.0` | `1.11.1` | | [serde](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.214` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.64` | `1.0.66` | | [tokio](https://github.com/tokio-rs/tokio) | `1.40.0` | `1.41.0` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.8` | `0.12.9` | Updates `anyhow` from 1.0.89 to 1.0.91 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.89...1.0.91) Updates `clap_complete` from 4.5.33 to 4.5.36 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.33...clap_complete-v4.5.36) Updates `regex` from 1.11.0 to 1.11.1 - [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.11.0...1.11.1) Updates `serde` from 1.0.210 to 1.0.214 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.210...v1.0.214) Updates `thiserror` from 1.0.64 to 1.0.66 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.64...1.0.66) Updates `tokio` from 1.40.0 to 1.41.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.40.0...tokio-1.41.0) Updates `reqwest` from 0.12.8 to 0.12.9 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.8...v0.12.9) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 0356e13..ebc3888 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ socket2 = "0.5" strum = { version = "0.26", features = ["derive"] } tar = "0.4" thiserror = "1" -tokio = { version = "1.40.0", features = ["fs"] } +tokio = { version = "1.41.0", features = ["fs"] } zip = { version = "2", default-features = false } [features] -- cgit v1.2.3 From 807e8d74877fbe342e79d6e985be61fba2fb787e Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Thu, 7 Nov 2024 20:38:36 +0100 Subject: Bump deps --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index ebc3888..dbddaa2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ simplelog = "0.12" socket2 = "0.5" strum = { version = "0.26", features = ["derive"] } tar = "0.4" -thiserror = "1" +thiserror = "2" tokio = { version = "1.41.0", features = ["fs"] } zip = { version = "2", default-features = false } -- cgit v1.2.3 From 5c79d71da0b0cccc33951c931347106c9d62ca82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Dec 2024 02:58:27 +0000 Subject: Bump the all-dependencies group with 9 updates Bumps the all-dependencies group with 9 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.20` | `4.5.21` | | [clap_complete](https://github.com/clap-rs/clap) | `4.5.37` | `4.5.38` | | [comrak](https://github.com/kivikakk/comrak) | `0.29.0` | `0.31.0` | | [rustls](https://github.com/rustls/rustls) | `0.23.16` | `0.23.19` | | [serde](https://github.com/serde-rs/serde) | `1.0.214` | `1.0.215` | | [socket2](https://github.com/rust-lang/socket2) | `0.5.7` | `0.5.8` | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.0` | `2.0.3` | | [zip](https://github.com/zip-rs/zip2) | `2.2.0` | `2.2.1` | | [url](https://github.com/servo/rust-url) | `2.5.3` | `2.5.4` | Updates `clap` from 4.5.20 to 4.5.21 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.20...clap_complete-v4.5.21) Updates `clap_complete` from 4.5.37 to 4.5.38 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.37...clap_complete-v4.5.38) Updates `comrak` from 0.29.0 to 0.31.0 - [Release notes](https://github.com/kivikakk/comrak/releases) - [Changelog](https://github.com/kivikakk/comrak/blob/main/changelog.txt) - [Commits](https://github.com/kivikakk/comrak/compare/v0.29.0...v0.31.0) Updates `rustls` from 0.23.16 to 0.23.19 - [Release notes](https://github.com/rustls/rustls/releases) - [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustls/rustls/compare/v/0.23.16...v/0.23.19) Updates `serde` from 1.0.214 to 1.0.215 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.214...v1.0.215) Updates `socket2` from 0.5.7 to 0.5.8 - [Release notes](https://github.com/rust-lang/socket2/releases) - [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/socket2/commits) Updates `thiserror` from 2.0.0 to 2.0.3 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/2.0.0...2.0.3) Updates `zip` from 2.2.0 to 2.2.1 - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v2.2.0...v2.2.1) Updates `url` from 2.5.3 to 2.5.4 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.5.3...v2.5.4) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: comrak dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: rustls dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: socket2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: zip dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: url dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index dbddaa2..da3a999 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ clap = { version = "4", features = ["derive", "cargo", "wrap_help", "deprecated" clap_complete = "4" clap_mangen = "0.2" colored = "2" -comrak = { version = "0.29", default-features = false } +comrak = { version = "0.31", default-features = false } fast_qr = { version = "0.12", features = ["svg"] } futures = "0.3" grass = { version = "0.13", features = ["macro"], default-features = false } -- cgit v1.2.3 From d770798ea23add6b677f5523cdbdb50e6c61b9cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 02:50:54 +0000 Subject: Bump the all-dependencies group with 14 updates Bumps the all-dependencies group with 14 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.93` | `1.0.95` | | [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` | | [clap](https://github.com/clap-rs/clap) | `4.5.21` | `4.5.23` | | [clap_complete](https://github.com/clap-rs/clap) | `4.5.38` | `4.5.40` | | [colored](https://github.com/mackwic/colored) | `2.1.0` | `2.2.0` | | [comrak](https://github.com/kivikakk/comrak) | `0.31.0` | `0.32.0` | | [fast_qr](https://github.com/erwanvivien/fast_qr) | `0.12.6` | `0.12.7` | | [rustls](https://github.com/rustls/rustls) | `0.23.19` | `0.23.20` | | [serde](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.217` | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.3` | `2.0.9` | | [tokio](https://github.com/tokio-rs/tokio) | `1.41.1` | `1.42.0` | | [zip](https://github.com/zip-rs/zip2) | `2.2.1` | `2.2.2` | | [predicates](https://github.com/assert-rs/predicates-rs) | `3.1.2` | `3.1.3` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.9` | `0.12.12` | Updates `anyhow` from 1.0.93 to 1.0.95 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.93...1.0.95) Updates `chrono` from 0.4.38 to 0.4.39 - [Release notes](https://github.com/chronotope/chrono/releases) - [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md) - [Commits](https://github.com/chronotope/chrono/compare/v0.4.38...v0.4.39) Updates `clap` from 4.5.21 to 4.5.23 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.21...clap_complete-v4.5.23) Updates `clap_complete` from 4.5.38 to 4.5.40 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.38...clap_complete-v4.5.40) Updates `colored` from 2.1.0 to 2.2.0 - [Release notes](https://github.com/mackwic/colored/releases) - [Changelog](https://github.com/colored-rs/colored/blob/master/CHANGELOG.md) - [Commits](https://github.com/mackwic/colored/compare/v2.1.0...v2.2.0) Updates `comrak` from 0.31.0 to 0.32.0 - [Release notes](https://github.com/kivikakk/comrak/releases) - [Changelog](https://github.com/kivikakk/comrak/blob/main/changelog.txt) - [Commits](https://github.com/kivikakk/comrak/compare/v0.31.0...v0.32.0) Updates `fast_qr` from 0.12.6 to 0.12.7 - [Release notes](https://github.com/erwanvivien/fast_qr/releases) - [Commits](https://github.com/erwanvivien/fast_qr/commits) Updates `rustls` from 0.23.19 to 0.23.20 - [Release notes](https://github.com/rustls/rustls/releases) - [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustls/rustls/compare/v/0.23.19...v/0.23.20) Updates `serde` from 1.0.215 to 1.0.217 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.215...v1.0.217) Updates `thiserror` from 2.0.3 to 2.0.9 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/2.0.3...2.0.9) Updates `tokio` from 1.41.1 to 1.42.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.1...tokio-1.42.0) Updates `zip` from 2.2.1 to 2.2.2 - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v2.2.1...v2.2.2) Updates `predicates` from 3.1.2 to 3.1.3 - [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/predicates-rs/compare/v3.1.2...v3.1.3) Updates `reqwest` from 0.12.9 to 0.12.12 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.9...v0.12.12) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: chrono dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: colored dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: comrak dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: fast_qr dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: rustls dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: zip dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: predicates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index da3a999..978558c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ clap = { version = "4", features = ["derive", "cargo", "wrap_help", "deprecated" clap_complete = "4" clap_mangen = "0.2" colored = "2" -comrak = { version = "0.31", default-features = false } +comrak = { version = "0.32", default-features = false } fast_qr = { version = "0.12", features = ["svg"] } futures = "0.3" grass = { version = "0.13", features = ["macro"], default-features = false } @@ -56,7 +56,7 @@ socket2 = "0.5" strum = { version = "0.26", features = ["derive"] } tar = "0.4" thiserror = "2" -tokio = { version = "1.41.0", features = ["fs"] } +tokio = { version = "1.42.0", features = ["fs"] } zip = { version = "2", default-features = false } [features] -- cgit v1.2.3 From 093e2e49911d9c1304d6f0d1e947a2aabb43e630 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Fri, 10 Jan 2025 10:22:11 +0100 Subject: Bump deps --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 978558c..7e0d8e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,8 +31,8 @@ chrono-humanize = "0.2" clap = { version = "4", features = ["derive", "cargo", "wrap_help", "deprecated", "env"] } clap_complete = "4" clap_mangen = "0.2" -colored = "2" -comrak = { version = "0.32", default-features = false } +colored = "3" +comrak = { version = "0.33", default-features = false } fast_qr = { version = "0.12", features = ["svg"] } futures = "0.3" grass = { version = "0.13", features = ["macro"], default-features = false } @@ -74,7 +74,7 @@ predicates = "3" pretty_assertions = "1.2" regex = "1" reqwest = { version = "0.12", features = ["blocking", "multipart", "rustls-tls"], default-features = false } -rstest = "0.23" +rstest = "0.24" select = "0.6" url = "2" -- cgit v1.2.3 From e44138b332c227b737d034251d5874e27c9bd66e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Feb 2025 02:16:10 +0000 Subject: Bump the all-dependencies group with 8 updates Bumps the all-dependencies group with 8 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.26` | `4.5.27` | | [clap_complete](https://github.com/clap-rs/clap) | `4.5.42` | `4.5.44` | | [clap_mangen](https://github.com/clap-rs/clap) | `0.2.25` | `0.2.26` | | [comrak](https://github.com/kivikakk/comrak) | `0.33.0` | `0.35.0` | | [httparse](https://github.com/seanmonstar/httparse) | `1.9.5` | `1.10.0` | | [log](https://github.com/rust-lang/log) | `0.4.22` | `0.4.25` | | [rustls](https://github.com/rustls/rustls) | `0.23.20` | `0.23.22` | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.10` | `2.0.11` | Updates `clap` from 4.5.26 to 4.5.27 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.26...clap_complete-v4.5.27) Updates `clap_complete` from 4.5.42 to 4.5.44 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.42...clap_complete-v4.5.44) Updates `clap_mangen` from 0.2.25 to 0.2.26 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.25...clap_mangen-v0.2.26) Updates `comrak` from 0.33.0 to 0.35.0 - [Release notes](https://github.com/kivikakk/comrak/releases) - [Changelog](https://github.com/kivikakk/comrak/blob/main/changelog.txt) - [Commits](https://github.com/kivikakk/comrak/compare/v0.33.0...v0.35.0) Updates `httparse` from 1.9.5 to 1.10.0 - [Release notes](https://github.com/seanmonstar/httparse/releases) - [Commits](https://github.com/seanmonstar/httparse/compare/v1.9.5...v1.10.0) Updates `log` from 0.4.22 to 0.4.25 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.22...0.4.25) Updates `rustls` from 0.23.20 to 0.23.22 - [Release notes](https://github.com/rustls/rustls/releases) - [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustls/rustls/compare/v/0.23.20...v/0.23.22) Updates `thiserror` from 2.0.10 to 2.0.11 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/2.0.10...2.0.11) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: clap_mangen dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: comrak dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: httparse dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: rustls dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 7e0d8e8..7dbdbdf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ clap = { version = "4", features = ["derive", "cargo", "wrap_help", "deprecated" clap_complete = "4" clap_mangen = "0.2" colored = "3" -comrak = { version = "0.33", default-features = false } +comrak = { version = "0.35", default-features = false } fast_qr = { version = "0.12", features = ["svg"] } futures = "0.3" grass = { version = "0.13", features = ["macro"], default-features = false } -- cgit v1.2.3 From 317bd6a5d42a83c9c5e874788282a6e76f638211 Mon Sep 17 00:00:00 2001 From: Lukas Stabe Date: Thu, 6 Feb 2025 00:03:05 +0100 Subject: add read-only webdav support --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 7dbdbdf..b1c0855 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,6 +33,7 @@ clap_complete = "4" clap_mangen = "0.2" colored = "3" comrak = { version = "0.35", default-features = false } +dav-server = { version = "0.7", features = ["actix-compat"] } fast_qr = { version = "0.12", features = ["svg"] } futures = "0.3" grass = { version = "0.13", features = ["macro"], default-features = false } @@ -74,6 +75,7 @@ predicates = "3" pretty_assertions = "1.2" regex = "1" reqwest = { version = "0.12", features = ["blocking", "multipart", "rustls-tls"], default-features = false } +reqwest_dav = "0.1" rstest = "0.24" select = "0.6" url = "2" -- cgit v1.2.3 From dfa37fdfcb84bdedf72c72b278ea89592d1b293a Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Thu, 6 Feb 2025 07:37:05 +0100 Subject: Release miniserve version 0.29.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index b1c0855..167bed9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniserve" -version = "0.28.0" +version = "0.29.0" description = "For when you really just want to serve some files over HTTP right now!" authors = ["Sven-Hendrik Haase ", "Boastful Squirrel "] repository = "https://github.com/svenstaro/miniserve" -- cgit v1.2.3