From fe18a49d40e38256110c0c018b4193daa971a3c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Sep 2022 08:23:43 +0000 Subject: [PATCH] chore(deps): update clap requirement from 3.0 to 4.0 Updates the requirements on [clap](https://github.com/clap-rs/clap) to permit the latest version. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v3.0.0...v4.0.2) --- updated-dependencies: - dependency-name: clap 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 aebffc6..c005a90 100644 --- a/phantun/Cargo.toml +++ b/phantun/Cargo.toml @@ -11,7 +11,7 @@ Transforms UDP stream into (fake) TCP streams that can go through Layer 3 & Layer 4 (NAPT) firewalls/NATs. """ [dependencies] -clap = { version = "3.0", features = ["cargo"] } +clap = { version = "4.0", features = ["cargo"] } socket2 = { version = "0.4", features = ["all"] } fake-tcp = { path = "../fake-tcp", version = "0.4" } tokio = { version = "1.14", features = ["full"] }