From b20f72c6063bd363d458935b1b3d9e96e32274ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Jul 2022 01:47:57 +0000 Subject: [PATCH] deps(cargo): bump tokio from 1.19.2 to 1.20.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.19.2 to 1.20.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.19.2...tokio-1.20.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- lib/win-gsmtc/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c4948be..5afc7a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1309,10 +1309,11 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.19.2" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" +checksum = "57aec3cfa4c296db7255446efb4928a6be304b431a806216105542a67b6ca82e" dependencies = [ + "autocfg", "bytes", "libc", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 33fe41d..b4925a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ name = "current-song2" path = "src/main.rs" [dependencies] -tokio = { version = "1.19", features = ["sync"] } +tokio = { version = "1.20", features = ["sync"] } tokio-stream = { version = "0.1", features = ["sync"] } futures = "0.3" diff --git a/lib/win-gsmtc/Cargo.toml b/lib/win-gsmtc/Cargo.toml index 7419d6b..ea67b40 100644 --- a/lib/win-gsmtc/Cargo.toml +++ b/lib/win-gsmtc/Cargo.toml @@ -8,7 +8,7 @@ name = "gsmtc" path = "src/lib.rs" [dependencies] -tokio = { version = "1.19", features = ["sync", "macros", "rt"] } +tokio = { version = "1.20", features = ["sync", "macros", "rt"] } windows = { version = "0.38", features = ["Media_Control", "Foundation", "Foundation_Collections", "Storage_Streams"] } tracing = "0.1" serde = { version = "1.0", features = ["derive"] }