From c9002907fc14222e8f866fb7af38ebf5d7910839 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Feb 2023 00:35:05 +0000 Subject: [PATCH] chore(deps): bump tokio from 1.19.2 to 1.20.4 in /backend Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.19.2 to 1.20.4. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.19.2...tokio-1.20.4) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backend/Cargo.lock | 6 +++--- backend/core/Cargo.toml | 2 +- backend/task-executor/Cargo.toml | 2 +- backend/tests-integration/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 9acc59f7..61747ff5 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -4104,16 +4104,16 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.19.2" +version = "1.20.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" +checksum = "eb78f30e4b41e98ca4cce5acb51168a033839a7af9e42b380355808e14e98ee0" dependencies = [ + "autocfg", "bytes", "libc", "memchr", "mio", "num_cpus", - "once_cell", "parking_lot 0.12.1", "pin-project-lite", "signal-hook-registry", diff --git a/backend/core/Cargo.toml b/backend/core/Cargo.toml index 60053d47..1522d6b8 100644 --- a/backend/core/Cargo.toml +++ b/backend/core/Cargo.toml @@ -46,7 +46,7 @@ idgenerator = "2.0.0" rocket_cors = { git = "https://github.com/BobAnkh/rocket_cors.git", branch = "master" } pulsar = "4.1.2" futures = "0.3.21" -tokio = { version = "1.19.2", features = [ +tokio = { version = "1.20.4", features = [ "macros", "rt-multi-thread", "parking_lot", diff --git a/backend/task-executor/Cargo.toml b/backend/task-executor/Cargo.toml index 32679d59..9db3e02b 100644 --- a/backend/task-executor/Cargo.toml +++ b/backend/task-executor/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] backend = { path = "../core" } -tokio = { version = "1.19.2", features = [ +tokio = { version = "1.20.4", features = [ "macros", "rt-multi-thread", "parking_lot", diff --git a/backend/tests-integration/Cargo.toml b/backend/tests-integration/Cargo.toml index 9e3a4da3..6a7490bd 100644 --- a/backend/tests-integration/Cargo.toml +++ b/backend/tests-integration/Cargo.toml @@ -16,7 +16,7 @@ rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master", f ] } serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.82" -tokio = { version = "1.19.2", features = [ +tokio = { version = "1.20.4", features = [ "macros", "rt-multi-thread", "parking_lot",