From 7e01569d085b67a863a129e2813fcfb0596bd937 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 02:18:28 +0000 Subject: [PATCH] Bump tokio from 1.33.0 to 1.34.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.33.0 to 1.34.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.33.0...tokio-1.34.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- hifirs/Cargo.toml | 2 +- playlist-sync/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2c54ecc..b58de4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3759,9 +3759,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.33.0" +version = "1.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" +checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" dependencies = [ "backtrace", "bytes", @@ -3779,9 +3779,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" +checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" dependencies = [ "proc-macro2", "quote", diff --git a/hifirs/Cargo.toml b/hifirs/Cargo.toml index 5610b76..4a6820b 100644 --- a/hifirs/Cargo.toml +++ b/hifirs/Cargo.toml @@ -26,7 +26,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" snafu = "0.7" sqlx = { version = "0.7", default-features = false, features = [ "runtime-tokio-rustls", "sqlite", "migrate", "macros" ] } -tokio = { version = "1.0", features = ["full"] } +tokio = { version = "1.34", features = ["full"] } tokio-stream = "0.1" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } diff --git a/playlist-sync/Cargo.toml b/playlist-sync/Cargo.toml index 9aa6110..8e58794 100644 --- a/playlist-sync/Cargo.toml +++ b/playlist-sync/Cargo.toml @@ -15,7 +15,7 @@ pretty_env_logger = "0.5" hifirs-qobuz-api = { version = "0.1.0", path = "../qobuz-api" } rspotify = { version = "0.12", default-features = false, features = ["client-reqwest", "reqwest-rustls-tls"] } snafu = "0.7" -tokio = { version = "1.0", features = ["full"] } +tokio = { version = "1.34", features = ["full"] } warp = { version = "0.3", features = ["tokio-rustls"] } webbrowser = "0.8" console = "0.15"