From 642a3f42bcbb7efe28bf35ff07ea6a4a32fefb2d Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 6 Jun 2022 18:35:21 +0000 Subject: [PATCH] chore(deps): update rust crate tokio to 1.19.2 --- Cargo.lock | 4 ++-- core/Cargo.toml | 2 +- database/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 68f4cd9..6897d91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1634,9 +1634,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.19.1" +version = "1.19.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95eec79ea28c00a365f539f1961e9278fbcaf81c0ff6aaf0e93c181352446948" +checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" dependencies = [ "bytes", "libc", diff --git a/core/Cargo.toml b/core/Cargo.toml index 5300eda..b15a73a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -16,7 +16,7 @@ path = "./src/main.rs" [dependencies] better-panic = "0.3.0" simplelog = "0.12.0" -tokio = { version = "1.19.1", features = ["full"] } +tokio = { version = "1.19.2", features = ["full"] } log = { version = "0.4.17", features = ["max_level_debug", "release_max_level_warn"] } homedisk-database = { path = "../database" } homedisk-server = { path = "../server" } diff --git a/database/Cargo.toml b/database/Cargo.toml index e6fbbf0..49be4ac 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -13,4 +13,4 @@ rust_utilities = { version = "0.2.0", features = ["sha"] } homedisk-types = { path = "../types", features = ["database"] } [dev-dependencies] -tokio = { version = "1.19.1", features = ["full"] } +tokio = { version = "1.19.2", features = ["full"] }