From c08e64042182f7b71db9e1f7ca7c39fdee0f9922 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Nov 2022 00:51:50 +0000 Subject: [PATCH] fix(deps): update rust crate tokio to 1.22 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- imgurs-cli/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b017364..bc580f6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1848,9 +1848,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.21.2" +version = "1.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" +checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3" dependencies = [ "autocfg", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 659bde1..afba588 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,4 +40,4 @@ thiserror = "1.0" [dev-dependencies] # Async tests -tokio = { version = "1.21", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.22", features = ["macros", "rt-multi-thread"] } diff --git a/imgurs-cli/Cargo.toml b/imgurs-cli/Cargo.toml index ba7952f..2a663bc 100644 --- a/imgurs-cli/Cargo.toml +++ b/imgurs-cli/Cargo.toml @@ -16,7 +16,7 @@ path = "src/main.rs" [dependencies] # Async runtime -tokio = { version = "1.21", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.22", features = ["macros", "rt-multi-thread"] } # CLI clap = { version = "4.0", features = ["derive"] }