From ff88fb7e8d92d206aa2432634832c0471680adf7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 05:02:22 +0000 Subject: [PATCH] build(deps): bump tokio from 1.41.1 to 1.43.0 in /src/enclave-agent Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.41.1 to 1.43.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.1...tokio-1.43.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/enclave-agent/Cargo.lock | 12 ++++++------ src/enclave-agent/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/enclave-agent/Cargo.lock b/src/enclave-agent/Cargo.lock index 4a9bf977..232ec69a 100644 --- a/src/enclave-agent/Cargo.lock +++ b/src/enclave-agent/Cargo.lock @@ -2483,9 +2483,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.155" +version = "0.2.169" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" +checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" [[package]] name = "libloading" @@ -4687,9 +4687,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.41.1" +version = "1.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" +checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" dependencies = [ "backtrace", "bytes 1.5.0", @@ -4704,9 +4704,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", diff --git a/src/enclave-agent/Cargo.toml b/src/enclave-agent/Cargo.toml index 9d5d3fd6..000be8b8 100644 --- a/src/enclave-agent/Cargo.toml +++ b/src/enclave-agent/Cargo.toml @@ -21,7 +21,7 @@ serde = "1.0.215" serde_json = "1.0.133" # Async runtime -tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros", "signal"] } +tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros", "signal"] } ttrpc = { git = "https://github.com/haosanzi/ttrpc-rust", features = ["async"] }