From 6c42f02b28a5d1ae54d3160c7864ec6795a32814 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Feb 2023 09:05:00 +0000 Subject: [PATCH] chore(deps): update socket2 requirement from 0.4 to 0.5 Updates the requirements on [socket2](https://github.com/rust-lang/socket2) to permit the latest version. - [Release notes](https://github.com/rust-lang/socket2/releases) - [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/socket2/compare/v0.4.0...v0.5.1) --- updated-dependencies: - dependency-name: socket2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- phantun/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phantun/Cargo.toml b/phantun/Cargo.toml index 14aa83b..94ea726 100644 --- a/phantun/Cargo.toml +++ b/phantun/Cargo.toml @@ -12,7 +12,7 @@ Layer 3 & Layer 4 (NAPT) firewalls/NATs. """ [dependencies] clap = { version = "4.0", features = ["cargo"] } -socket2 = { version = "0.4", features = ["all"] } +socket2 = { version = "0.5", features = ["all"] } fake-tcp = { path = "../fake-tcp", version = "0.5" } tokio = { version = "1.14", features = ["full"] } tokio-util = "0.7"