From ac4bfaba4f78463ba0516a52919797fe146a4fcc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Apr 2025 02:15:21 +0000 Subject: [PATCH] build(deps): bump tokio in /pkg/examples/rust_project_with_deps Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.38.1 to 1.38.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.38.1...tokio-1.38.2) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.38.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .../rust_project_with_deps/Cargo.lock | 22 +++++++++---------- .../rust_project_with_deps/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pkg/examples/rust_project_with_deps/Cargo.lock b/pkg/examples/rust_project_with_deps/Cargo.lock index 2d87ef4..6e374c7 100644 --- a/pkg/examples/rust_project_with_deps/Cargo.lock +++ b/pkg/examples/rust_project_with_deps/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -197,6 +197,14 @@ dependencies = [ "bitflags", ] +[[package]] +name = "rust_project_with_deps" +version = "0.1.0" +dependencies = [ + "anyhow", + "tokio", +] + [[package]] name = "rustc-demangle" version = "0.1.24" @@ -247,9 +255,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.38.1" +version = "1.38.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb2caba9f80616f438e09748d5acda951967e1ea58508ef53d9c6402485a46df" +checksum = "68722da18b0fc4a05fdc1120b302b82051265792a1e1b399086e9b204b10ad3d" dependencies = [ "backtrace", "bytes", @@ -425,11 +433,3 @@ name = "windows_x86_64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" - -[[package]] -name = "world" -version = "0.1.0" -dependencies = [ - "anyhow", - "tokio", -] diff --git a/pkg/examples/rust_project_with_deps/Cargo.toml b/pkg/examples/rust_project_with_deps/Cargo.toml index 5944b86..b2e1a24 100644 --- a/pkg/examples/rust_project_with_deps/Cargo.toml +++ b/pkg/examples/rust_project_with_deps/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" [dependencies] anyhow = "1.0.86" -tokio = { version = "1.38.1", features = ["full"] } +tokio = { version = "1.38.2", features = ["full"] }