Merge pull request #189 from vbrandl/dependabot/cargo/actix-web-3.2.0

Bump actix-web from 3.1.0 to 3.2.0
This commit is contained in:
Valentin Brandl 2020-11-23 11:56:24 +01:00 committed by GitHub
commit bcdf7db549
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 17 deletions

38
Cargo.lock generated
View File

@ -58,9 +58,9 @@ dependencies = [
[[package]]
name = "actix-http"
version = "2.0.0"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05dd80ba8f27c4a34357c07e338c8f5c38f8520e6d626ca1727d8fecc41b0cab"
checksum = "404df68c297f73b8d36c9c9056404913d25905a8f80127b0e5fe147c9c4b9f02"
dependencies = [
"actix-codec 0.3.0",
"actix-connect",
@ -68,7 +68,7 @@ dependencies = [
"actix-service",
"actix-threadpool",
"actix-utils 2.0.0",
"base64",
"base64 0.13.0",
"bitflags",
"brotli2",
"bytes 0.5.6",
@ -92,7 +92,7 @@ dependencies = [
"log",
"mime",
"percent-encoding",
"pin-project 0.4.23",
"pin-project 1.0.1",
"rand",
"regex",
"serde",
@ -265,9 +265,9 @@ dependencies = [
[[package]]
name = "actix-web"
version = "3.1.0"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1b12fe25e11cd9ed2ef2e428427eb6178a1b363f3f7f0dab8278572f11b2da1"
checksum = "88344b7a5ef27e5e09e73565379f69273dd3e2d29e82afc381b84d170d0a5631"
dependencies = [
"actix-codec 0.3.0",
"actix-http",
@ -291,7 +291,7 @@ dependencies = [
"fxhash",
"log",
"mime",
"pin-project 0.4.23",
"pin-project 1.0.1",
"regex",
"serde",
"serde_json",
@ -304,9 +304,9 @@ dependencies = [
[[package]]
name = "actix-web-codegen"
version = "0.3.0"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "750ca8fb60bbdc79491991650ba5d2ae7cd75f3fc00ead51390cfe9efda0d4d8"
checksum = "ad26f77093333e0e7c6ffe54ebe3582d908a104e448723eec6d43d08b07143fb"
dependencies = [
"proc-macro2",
"quote",
@ -417,7 +417,7 @@ dependencies = [
"actix-http",
"actix-rt",
"actix-service",
"base64",
"base64 0.12.0",
"bytes 0.5.6",
"derive_more",
"futures-core",
@ -458,7 +458,7 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0228ae65b89e72921e86c19c3574da63bda0628e9d7da5e164f569bbf4e477d"
dependencies = [
"base64",
"base64 0.12.0",
"once_cell",
"rusttype",
]
@ -475,6 +475,12 @@ version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d5ca2cd0adc3f48f9e9ea5a6bbdf9ccc0bfade884847e484d452414c7ccffb3"
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
version = "1.2.1"
@ -1800,9 +1806,9 @@ dependencies = [
[[package]]
name = "regex"
version = "1.3.4"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "322cf97724bea3ee221b78fe25ac9c46114ebb51747ad5babd51a2fc6a8235a8"
checksum = "8963b85b8ce3074fecffde43b4b0dded83ce2f367dc8d363afc56679f3ee820b"
dependencies = [
"aho-corasick",
"memchr",
@ -1841,7 +1847,7 @@ version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9eaa17ac5d7b838b7503d118fa16ad88f440498bf9ffe5424e621f93190d61e"
dependencies = [
"base64",
"base64 0.12.0",
"bytes 0.5.6",
"encoding_rs",
"futures-core",
@ -1886,7 +1892,7 @@ version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b8ffc645837eab09b6cbb6772d18897c6309753254592e149b40ff7fb113c01"
dependencies = [
"base64",
"base64 0.12.0",
"bytecount",
"itertools",
"md5",
@ -1899,7 +1905,7 @@ version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9dab61250775933275e84053ac235621dfb739556d5c54a2f2e9313b7cf43a19"
dependencies = [
"base64",
"base64 0.12.0",
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",

View File

@ -8,7 +8,7 @@ build = "build.rs"
[dependencies]
actix-rt = "1.1.1"
actix-slog = "0.2.1"
actix-web = "3.1.0"
actix-web = "3.2.0"
badge = "0.3.0"
bytes = "0.6.0"
futures = "0.3.7"