From b2e34b4a7a9196eed1294117a53629e4d124ce18 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 00:50:27 +0000 Subject: [PATCH] Update mio requirement from 0.8 to 1.0 Updates the requirements on [mio](https://github.com/tokio-rs/mio) to permit the latest version. - [Release notes](https://github.com/tokio-rs/mio/releases) - [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/mio/compare/v0.8.0...v1.0.0) --- updated-dependencies: - dependency-name: mio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- metrics-exporter-tcp/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metrics-exporter-tcp/Cargo.toml b/metrics-exporter-tcp/Cargo.toml index 893df569..0a002a13 100644 --- a/metrics-exporter-tcp/Cargo.toml +++ b/metrics-exporter-tcp/Cargo.toml @@ -22,7 +22,7 @@ bytes = { version = "1", default-features = false } crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] } prost = { version = "0.12", default-features = false } prost-types = { version = "0.12", default-features = false, features = ["std"] } -mio = { version = "0.8", default-features = false, features = ["os-poll", "net"] } +mio = { version = "1.0", default-features = false, features = ["os-poll", "net"] } tracing = { version = "0.1", default-features = false, features = ["attributes"] } [build-dependencies]