From 1a1629748b301a05eda1431cfcd72057f9d005bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 08:46:24 +0000 Subject: [PATCH] chore(deps): bump tokio from 1.37.0 to 1.38.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.37.0 to 1.38.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.38.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- examples/lazy-async-func/Cargo.toml | 2 +- lazy-attribute-core/Cargo.toml | 2 +- lazy-attribute/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6b5861c..feefad9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,9 +289,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.37.0" +version = "1.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" +checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" dependencies = [ "backtrace", "num_cpus", @@ -301,9 +301,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" dependencies = [ "proc-macro2", "quote", diff --git a/examples/lazy-async-func/Cargo.toml b/examples/lazy-async-func/Cargo.toml index b130ef7..139c2d4 100644 --- a/examples/lazy-async-func/Cargo.toml +++ b/examples/lazy-async-func/Cargo.toml @@ -6,4 +6,4 @@ publish = false [dependencies] lazy-attribute = { path = "../../lazy-attribute", features = ["async"] } -tokio = { version = "1.37.0", features = ["macros", "rt", "rt-multi-thread"] } +tokio = { version = "1.38.0", features = ["macros", "rt", "rt-multi-thread"] } diff --git a/lazy-attribute-core/Cargo.toml b/lazy-attribute-core/Cargo.toml index 1d3b934..c5a4c27 100644 --- a/lazy-attribute-core/Cargo.toml +++ b/lazy-attribute-core/Cargo.toml @@ -31,4 +31,4 @@ default = [] async = [] [dev-dependencies] -tokio = { version = "1.37.0", features = ["macros", "rt", "rt-multi-thread"] } +tokio = { version = "1.38.0", features = ["macros", "rt", "rt-multi-thread"] } diff --git a/lazy-attribute/Cargo.toml b/lazy-attribute/Cargo.toml index 5d25a24..9b69193 100644 --- a/lazy-attribute/Cargo.toml +++ b/lazy-attribute/Cargo.toml @@ -21,7 +21,7 @@ lazy-attribute-core = { version = "0.1.4", path = "../lazy-attribute-core" } once_cell = "1.19" [dev-dependencies] -tokio = { version = "1.37.0", features = ["macros", "rt", "rt-multi-thread"] } +tokio = { version = "1.38.0", features = ["macros", "rt", "rt-multi-thread"] } trybuild = "1.0.91" [features]