diff options
author | dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> | 2020-10-02 04:25:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 04:25:24 +0000 |
commit | a55a72c35f8dc062b333cf3aa5b005fa8589e50a (patch) | |
tree | d5c9bfa5749b6a8e8ea8b3a0a76aec770b40f694 | |
parent | (cargo-release) start next development iteration 0.10.1-alpha.0 (diff) | |
parent | Bump actix-web from 3.0.2 to 3.1.0 (diff) | |
download | miniserve-a55a72c35f8dc062b333cf3aa5b005fa8589e50a.tar.gz miniserve-a55a72c35f8dc062b333cf3aa5b005fa8589e50a.zip |
Merge pull request #386 from svenstaro/dependabot/cargo/actix-web-3.1.0
-rw-r--r-- | Cargo.lock | 31 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 24 insertions, 9 deletions
@@ -77,7 +77,7 @@ checksum = "8035f08f194893b199f4928b40425bd727c0257cf0fcf36f4ac214968d649ec7" dependencies = [ "actix-http 2.0.0", "actix-service", - "actix-web 3.0.2", + "actix-web 3.1.0", "bitflags", "bytes", "derive_more", @@ -199,7 +199,7 @@ checksum = "774bfeb11b54bf9c857a005b8ab893293da4eaff79261a66a9200dab7f5ab6e3" dependencies = [ "actix-service", "actix-utils 2.0.0", - "actix-web 3.0.2", + "actix-web 3.1.0", "bytes", "derive_more", "futures-util", @@ -400,9 +400,9 @@ dependencies = [ [[package]] name = "actix-web" -version = "3.0.2" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36de80175eb1f0a5c518024ce0d23646b54a23008279e090ca1848f6f1448bf4" +checksum = "c1b12fe25e11cd9ed2ef2e428427eb6178a1b363f3f7f0dab8278572f11b2da1" dependencies = [ "actix-codec 0.3.0", "actix-http 2.0.0", @@ -433,7 +433,7 @@ dependencies = [ "serde_urlencoded", "socket2", "time 0.2.21", - "tinyvec", + "tinyvec 1.0.1", "url", ] @@ -466,7 +466,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "536a75d767c5c2b3e64d3f569621f38ed7609359a0c82d149c88290a6ba41b22" dependencies = [ "actix-service", - "actix-web 3.0.2", + "actix-web 3.1.0", "base64 0.12.3", "bytes", "futures-util", @@ -1705,7 +1705,7 @@ version = "0.10.1-alpha.0" dependencies = [ "actix-files", "actix-multipart", - "actix-web 3.0.2", + "actix-web 3.1.0", "actix-web-httpauth", "alphanumeric-sort", "assert_cmd", @@ -2981,6 +2981,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "238ce071d267c5710f9d31451efec16c5ee22de34df17cc05e56cbc92e967117" [[package]] +name = "tinyvec" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b78a366903f506d2ad52ca8dc552102ffdd3e937ba8a227f024dc1d1eae28575" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" + +[[package]] name = "tokio" version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3205,7 +3220,7 @@ version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977" dependencies = [ - "tinyvec", + "tinyvec 0.3.4", ] [[package]] @@ -18,7 +18,7 @@ panic = 'abort' [dependencies] yansi = "0.5" -actix-web = "3.0" +actix-web = "3.1" simplelog = "0.8" percent-encoding = "2.1" port_check = "0.1" |