From f35f9bcafaae7d2516cf46846674f60aa6d27e39 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Jan 2023 21:49:35 +0000 Subject: [PATCH] chore(deps): bump tokio from 1.12.0 to 1.16.1 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.12.0 to 1.16.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.12.0...tokio-1.16.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 9 ++++----- Cargo.toml | 4 ++-- format/Cargo.toml | 2 +- repl/Cargo.toml | 4 ++-- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1b3269925..2a7c72d53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3275,11 +3275,10 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.12.0" +version = "1.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2c2416fdedca8443ae44b4527de1ea633af61d8f7169ffa6e72c5b53d24efcc" +checksum = "0c27a64b625de6d309e8c57716ba93021dccf1b3b5c97edd6d3dd2d2135afc0a" dependencies = [ - "autocfg 1.0.1", "libc", "mio", "num_cpus", @@ -3292,9 +3291,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "1.4.1" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "154794c8f499c2619acd19e839294703e9e32e7630ef5f46ea80d4ef0fbee5eb" +checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index be41bd57f..5cfd4f62a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ serde = { version = "1.0.130", optional = true } serde_state = { version = "0.4.8", optional = true } serde_derive_state = { version = "0.4.10", optional = true } -tokio = { version = "1.12.0", features = ["sync", "rt"], optional = true } +tokio = { version = "1.16.1", features = ["sync", "rt"], optional = true } tokio-stream = { version = "0.1", features = ["net"], optional = true } # Binding crates @@ -87,7 +87,7 @@ pretty_assertions = "1.0.0" structopt = "0.3.23" tempfile = "3.2.0" tensile = { version = "0.7", features = ["tokio"] } -tokio = { version = "1.12.0", features = ["macros", "rt-multi-thread", "fs"] } +tokio = { version = "1.16.1", features = ["macros", "rt-multi-thread", "fs"] } walkdir = "2.3.2" serde = "1.0.130" diff --git a/format/Cargo.toml b/format/Cargo.toml index 19263ce15..f42ea81a0 100644 --- a/format/Cargo.toml +++ b/format/Cargo.toml @@ -25,7 +25,7 @@ env_logger = "0.9.0" expect-test = "1.1.0" futures = "0.3.17" pretty_assertions = "1.0.0" -tokio = { version = "1.12.0", features = ["macros"] } +tokio = { version = "1.16.1", features = ["macros"] } walkdir = "2.3.2" gluon_base = { path = "../base", version = "0.18.0" } # GLUON diff --git a/repl/Cargo.toml b/repl/Cargo.toml index d32ae2b99..31250d8d9 100644 --- a/repl/Cargo.toml +++ b/repl/Cargo.toml @@ -30,7 +30,7 @@ gluon_doc = { version = "0.18.0", path = "../doc" } # GLUON app_dirs = { package = "app_dirs2", version = "2.3.2" } anyhow = "1.0.44" futures = "0.3.17" -tokio = { version = "1.12.0", features = ["rt-multi-thread", "macros", "signal"] } +tokio = { version = "1.16.1", features = ["rt-multi-thread", "macros", "signal"] } clap = "2.33.3" structopt = "0.3.23" log = "0.4.14" @@ -50,7 +50,7 @@ ansi_term = "0.12.1" [dev-dependencies] pretty_assertions = "1.0.0" -tokio = "1.12.0" +tokio = "1.16.1" [target.'cfg(unix)'.dev-dependencies] rexpect = "0.4.0"