From 18e78a64e5967a2cf75ee83a721d5939c7726551 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 00:44:42 +0000 Subject: [PATCH 1/2] Update socks5-impl requirement from 0.5 to 0.6 Updates the requirements on [socks5-impl](https://github.com/ssrlive/socks5-impl) to permit the latest version. - [Release notes](https://github.com/ssrlive/socks5-impl/releases) - [Commits](https://github.com/ssrlive/socks5-impl/commits) --- updated-dependencies: - dependency-name: socks5-impl dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c883d9e..c6c3b13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ hickory-proto = "0.24" log = "0.4" moka = { version = "0.12", default-features = false, features = ["future"] } rand = "0.8" -socks5-impl = "0.5" +socks5-impl = "0.6" tokio = { version = "1", features = ["full"] } tokio-util = "0.7" From 9f585faed124eccef438502f06248b7913b636a6 Mon Sep 17 00:00:00 2001 From: ssrlive <30760636+ssrlive@users.noreply.github.com> Date: Tue, 17 Dec 2024 11:39:01 +0800 Subject: [PATCH 2/2] Update Cargo.toml --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c6c3b13..f890e46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,9 @@ hickory-proto = "0.24" log = "0.4" moka = { version = "0.12", default-features = false, features = ["future"] } rand = "0.8" -socks5-impl = "0.6" +socks5-impl = { version = "0.6", default-features = false, features = [ + "client", +] } tokio = { version = "1", features = ["full"] } tokio-util = "0.7"