From 6a32096a2b87bad4f43d1cd4e7a88b1f04727e46 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 23:01:22 +0000 Subject: [PATCH] build(deps): update tokio requirement in /arbiter-core Updates the requirements on [tokio](https://github.com/tokio-rs/tokio) to permit the latest version. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.33.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- arbiter-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arbiter-core/Cargo.toml b/arbiter-core/Cargo.toml index 008ab613..371a74ac 100644 --- a/arbiter-core/Cargo.toml +++ b/arbiter-core/Cargo.toml @@ -22,7 +22,7 @@ serde = { version = "=1.0.188", features = ["derive"] } serde_json = { version = "=1.0.107" } # Concurrency/async -tokio = { version = "=1.32.0", features = ["macros", "full"] } +tokio = { version = "=1.33.0", features = ["macros", "full"] } async-trait = { version = "=0.1.73" } crossbeam-channel = { version = "=0.5.8" } atomic_enum = { version = "=0.2.0" }