From 5c4a1bff296b426bbbf1a135e688e61132d0260b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 9 Jan 2023 05:34:07 +0000 Subject: [PATCH] fix(deps): update rust crate tokio to 1.24 [security] --- 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 7c4fe65..46523de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1898,9 +1898,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.23.0" +version = "1.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46" +checksum = "1d9f76183f91ecfb55e1d7d5602bd1d979e38a3a522fe900241cf195624d67ae" dependencies = [ "autocfg", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 954038e..9dc5fbf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,4 +40,4 @@ thiserror = "1.0" [dev-dependencies] # Async tests -tokio = { version = "1.23", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24", features = ["macros", "rt-multi-thread"] } diff --git a/imgurs-cli/Cargo.toml b/imgurs-cli/Cargo.toml index 5723402..1b31a61 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.23", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24", features = ["macros", "rt-multi-thread"] } # CLI clap = { version = "4.0", features = ["derive"] }