From 83ad2635a34feb39049eb4bb66e1a82cf4b52f4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 11 Aug 2024 12:39:46 +0000 Subject: [PATCH] build(deps): update mio requirement from 0.5 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.5.0...v1.0.0) --- updated-dependencies: - dependency-name: mio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- packages/dht/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dht/Cargo.toml b/packages/dht/Cargo.toml index e00b8e08f..51097f169 100644 --- a/packages/dht/Cargo.toml +++ b/packages/dht/Cargo.toml @@ -24,5 +24,5 @@ chrono = "0.4" crc = "3" error-chain = "0.12" log = "0.4" -mio = "0.5" +mio = "1.0" rand = "0.8"