From 82ddee1e8973e4c3404c5c26647847325909d077 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2020 12:12:26 +0000 Subject: [PATCH] Update mio requirement from 0.6 to 0.7 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.6.0...v0.7.0) Signed-off-by: dependabot-preview[bot] --- Cargo.toml | 2 +- crates/tun/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 92c6b24..94e4655 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ members = [ log = "0.4" env_logger = { version = "0.6", default-features = false, features = [ "termcolor", "atty", "humantime" ] } clap = "2.33" -mio = { version = "0.6", default-features = false } +mio = { version = "0.7", default-features = false } ctrlc = { version = "3.1", features = ["termination"] } smoltcp = { version = "0.5", default-features = false, features = [ "std", "log", "proto-ipv4", "proto-ipv6" ] } diff --git a/crates/tun/Cargo.toml b/crates/tun/Cargo.toml index 25cd8fb..9e065ca 100644 --- a/crates/tun/Cargo.toml +++ b/crates/tun/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["tun", "network", "tunnel", "bindings"] [dependencies] libc = "0.2" ioctl-sys = "0.5" -mio = { version = "0.6", optional = true } +mio = { version = "0.7", optional = true } [features] default = [ ]