From 01d1c4c04b4802a453b313995594af050b497595 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 2 Jul 2023 01:18:16 +0000 Subject: [PATCH] chore(cargo): bump tokio from 1.29.0 to 1.29.1 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.29.0 to 1.29.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.29.0...tokio-1.29.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- deltachat-jsonrpc/Cargo.toml | 4 ++-- deltachat-rpc-server/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4e9066cbd..923b3c0c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4780,9 +4780,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.29.0" +version = "1.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "374442f06ee49c3a28a8fc9f01a2596fed7559c6b99b31279c3261778e77d84f" +checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" dependencies = [ "autocfg", "backtrace", diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index 2ed473555..c09a90e0d 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -24,7 +24,7 @@ futures = { version = "0.3.28" } serde_json = "1.0.96" yerpc = { version = "0.5.1", features = ["anyhow_expose", "openrpc"] } typescript-type-def = { version = "0.5.5", features = ["json_value"] } -tokio = { version = "1.28.2" } +tokio = { version = "1.29.1" } sanitize-filename = "0.4" walkdir = "2.3.3" base64 = "0.21" @@ -34,7 +34,7 @@ axum = { version = "0.6.18", optional = true, features = ["ws"] } env_logger = { version = "0.10.0", optional = true } [dev-dependencies] -tokio = { version = "1.28.2", features = ["full", "rt-multi-thread"] } +tokio = { version = "1.29.1", features = ["full", "rt-multi-thread"] } [features] diff --git a/deltachat-rpc-server/Cargo.toml b/deltachat-rpc-server/Cargo.toml index 55cbf5693..e1ce71916 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -19,7 +19,7 @@ futures-lite = "1.13.0" log = "0.4" serde_json = "1.0.96" serde = { version = "1.0", features = ["derive"] } -tokio = { version = "1.28.2", features = ["io-std"] } +tokio = { version = "1.29.1", features = ["io-std"] } tokio-util = "0.7.8" yerpc = { version = "0.5.1", features = ["anyhow_expose"] }