build(deps): bump tokio from 0.2.22 to 0.3.0

Bumps [tokio](https://github.com/tokio-rs/tokio) from 0.2.22 to 0.3.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-0.2.22...tokio-0.3.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
This commit is contained in:
dependabot-preview[bot] 2020-10-16 10:26:54 +00:00 committed by GitHub
parent 28b613e7ac
commit e5a4f32404
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 24 additions and 14 deletions

34
Cargo.lock generated
View File

@ -655,7 +655,7 @@ dependencies = [
"http",
"indexmap",
"slab",
"tokio",
"tokio 0.2.22",
"tokio-util",
"tracing",
]
@ -775,7 +775,7 @@ dependencies = [
"itoa",
"pin-project",
"socket2",
"tokio",
"tokio 0.2.22",
"tower-service",
"tracing",
"want",
@ -790,7 +790,7 @@ dependencies = [
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio 0.2.22",
"tokio-tls",
]
@ -1244,7 +1244,7 @@ dependencies = [
"serde",
"serde_json",
"thiserror",
"tokio",
"tokio 0.3.0",
"tracing",
"tracing-futures",
]
@ -1683,7 +1683,7 @@ dependencies = [
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio 0.2.22",
"tokio-tls",
"url",
"wasm-bindgen",
@ -2068,14 +2068,24 @@ dependencies = [
"num_cpus",
"pin-project-lite",
"slab",
]
[[package]]
name = "tokio"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7137dbb0abee577362ccdc7df21605cfcbb949243aeab47dac9ea6ef7d830e21"
dependencies = [
"bytes",
"pin-project-lite",
"tokio-macros",
]
[[package]]
name = "tokio-macros"
version = "0.2.5"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0c3acc6aa564495a0f2e1d59fab677cd7f81a19994cfc7f3ad0e64301560389"
checksum = "d48caa7b66c7a6ec943edf78d21a594fbeb24e536c781da67d5c32edec54103f"
dependencies = [
"proc-macro2",
"quote",
@ -2089,7 +2099,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343"
dependencies = [
"native-tls",
"tokio",
"tokio 0.2.22",
]
[[package]]
@ -2101,7 +2111,7 @@ dependencies = [
"futures-util",
"log",
"pin-project",
"tokio",
"tokio 0.2.22",
"tungstenite",
]
@ -2116,7 +2126,7 @@ dependencies = [
"futures-sink",
"log",
"pin-project-lite",
"tokio",
"tokio 0.2.22",
]
[[package]]
@ -2416,7 +2426,7 @@ dependencies = [
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio 0.2.22",
"tokio-tungstenite",
"tower-service",
"tracing",
@ -2606,7 +2616,7 @@ dependencies = [
"serde_yaml",
"sitemap",
"thiserror",
"tokio",
"tokio 0.3.0",
"tracing",
"tracing-futures",
"tracing-subscriber",

View File

@ -26,7 +26,7 @@ serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
sitemap = "0.4"
thiserror = "1"
tokio = { version = "0.2", features = ["macros"] }
tokio = { version = "0.3", features = ["macros"] }
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = { version = "0.2", features = ["fmt"] }

View File

@ -16,6 +16,6 @@ tracing = "0.1"
tracing-futures = "0.2"
[dev-dependencies]
tokio = { version = "0.2", features = ["macros"] }
tokio = { version = "0.3", features = ["macros"] }
envy = "0.4"
pretty_env_logger = "0"