From 91b245e7d290a8ea1c86fe05a569830102543488 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Feb 2023 01:59:23 +0000 Subject: [PATCH] build(deps): bump tokio from 1.17.0 to 1.18.5 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.17.0 to 1.18.5. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.17.0...tokio-1.18.5) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 ++++++++++++----- crates/sdk/Cargo.toml | 2 +- examples/message_log/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 404d8c93d..8ccf159b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -364,7 +364,7 @@ checksum = "418d37c8b1d42553c93648be529cb70f920d3baf8ef469b74b9638df426e0b4c" dependencies = [ "cfg-if", "libc", - "wasi", + "wasi 0.10.2+wasi-snapshot-preview1", ] [[package]] @@ -744,14 +744,15 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba272f85fa0b41fc91872be579b3bbe0f56b792aa361a380eb669469f68dafb2" +checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9" dependencies = [ "libc", "log", "miow", "ntapi", + "wasi 0.11.0+wasi-snapshot-preview1", "winapi", ] @@ -1425,9 +1426,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.17.0" +version = "1.18.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee" +checksum = "0e050c618355082ae5a89ec63bbf897225d5ffe84c7c4e036874e4d185a5044e" dependencies = [ "bytes", "libc", @@ -1731,6 +1732,12 @@ version = "0.10.2+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + [[package]] name = "wasm-bindgen" version = "0.2.79" diff --git a/crates/sdk/Cargo.toml b/crates/sdk/Cargo.toml index f9f4e76ca..1544f54e6 100644 --- a/crates/sdk/Cargo.toml +++ b/crates/sdk/Cargo.toml @@ -28,7 +28,7 @@ reqwest = { version = "0.11", default-features = false, features = [ "multipart", ], optional = true } tracing = { version = "0.1", optional = true } -tokio = { version = "1.17", features = ["sync"], optional = true } +tokio = { version = "1.18", features = ["sync"], optional = true } valuable = { version = "0.1", features = ["derive"], optional = true } serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/examples/message_log/Cargo.toml b/examples/message_log/Cargo.toml index a8bab799f..b5067afef 100644 --- a/examples/message_log/Cargo.toml +++ b/examples/message_log/Cargo.toml @@ -10,7 +10,7 @@ default-run = "main" [dependencies] harmony_rust_sdk = { path = "../../crates/sdk", features = ["client_native", "client_recommended"] } -tokio = { version = "1.17", features = ["rt", "macros", "fs"] } +tokio = { version = "1.18", features = ["rt", "macros", "fs"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] } ctrlc = "3.1.8" tracing = "0.1"