Bump actix-web from 3.2.0 to 3.3.1

Bumps [actix-web](https://github.com/actix/actix-web) from 3.2.0 to 3.3.1.
- [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-v3.2.0...web-v3.3.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
This commit is contained in:
dependabot-preview[bot] 2020-11-30 04:17:12 +00:00 committed by GitHub
parent 15965c5b5f
commit 8060b80ae6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 32 deletions

45
Cargo.lock generated
View File

@ -58,9 +58,9 @@ dependencies = [
[[package]]
name = "actix-http"
version = "2.1.0"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "404df68c297f73b8d36c9c9056404913d25905a8f80127b0e5fe147c9c4b9f02"
checksum = "452299e87817ae5673910e53c243484ca38be3828db819b6011736fc6982e874"
dependencies = [
"actix-codec 0.3.0",
"actix-connect",
@ -97,7 +97,7 @@ dependencies = [
"regex",
"serde 1.0.117",
"serde_json",
"serde_urlencoded 0.6.1",
"serde_urlencoded",
"sha-1",
"slab",
"time 0.2.19",
@ -252,9 +252,9 @@ dependencies = [
[[package]]
name = "actix-web"
version = "3.2.0"
version = "3.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88344b7a5ef27e5e09e73565379f69273dd3e2d29e82afc381b84d170d0a5631"
checksum = "7d6d0a6ae7ff7290372b3f636b9fc38b76dfbfc395187ce21e5b95471f7ccab9"
dependencies = [
"actix-codec 0.3.0",
"actix-http",
@ -282,7 +282,7 @@ dependencies = [
"regex",
"serde 1.0.117",
"serde_json",
"serde_urlencoded 0.6.1",
"serde_urlencoded",
"socket2",
"time 0.2.19",
"tinyvec",
@ -358,16 +358,17 @@ checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
[[package]]
name = "awc"
version = "2.0.0"
version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "150e00c06683ab44c5f97d033950e5d87a7a042d06d77f5eecb443cbd23d0575"
checksum = "b381e490e7b0cfc37ebc54079b0413d8093ef43d14a4e4747083f7fa47a9e691"
dependencies = [
"actix-codec 0.3.0",
"actix-http",
"actix-rt",
"actix-service",
"base64 0.12.0",
"base64 0.13.0",
"bytes 0.5.6",
"cfg-if 1.0.0",
"derive_more",
"futures-core",
"log",
@ -376,7 +377,7 @@ dependencies = [
"rand",
"serde 1.0.117",
"serde_json",
"serde_urlencoded 0.6.1",
"serde_urlencoded",
]
[[package]]
@ -638,9 +639,9 @@ dependencies = [
[[package]]
name = "derive_more"
version = "0.99.2"
version = "0.99.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2159be042979966de68315bce7034bb000c775f22e3e834e1c52ff78f041cae8"
checksum = "41cb0e6161ad61ed084a36ba71fbba9e3ac5aee3606fb607fe08da6acbcf3d8c"
dependencies = [
"proc-macro2",
"quote",
@ -668,12 +669,6 @@ version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
[[package]]
name = "dtoa"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4358a9e11b9a09cf52383b451b49a169e8d797b68aa02301ff586d70d9661ea3"
[[package]]
name = "either"
version = "1.5.3"
@ -1752,7 +1747,7 @@ dependencies = [
"percent-encoding",
"pin-project-lite 0.2.0",
"serde 1.0.117",
"serde_urlencoded 0.7.0",
"serde_urlencoded",
"tokio",
"tokio-tls",
"url",
@ -1940,18 +1935,6 @@ dependencies = [
"serde 0.8.23",
]
[[package]]
name = "serde_urlencoded"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
dependencies = [
"dtoa",
"itoa",
"serde 1.0.117",
"url",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.0"

View File

@ -7,7 +7,7 @@ build = "build.rs"
[dependencies]
actix-rt = "1.1.1"
actix-web = "3.2.0"
actix-web = "3.3.1"
badge = "0.3.0"
bytes = "0.6.0"
config = { version = "0.10.1", features = ["toml"] }