From 353eda21ac8280213edcec3823cc3bd77fe17c44 Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 20 Apr 2024 03:40:59 +0000 Subject: socks5 support (#113) --- Cargo.lock | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index 741cce8e..1c0ea9be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -122,6 +122,12 @@ version = "1.0.79" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" +[[package]] +name = "as-any" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b8a30a44e99a1c83ccb2a6298c563c888952a1c9134953db26876528f84c93a" + [[package]] name = "async-channel" version = "2.2.0" @@ -353,6 +359,7 @@ dependencies = [ "serde", "serde_json", "simdnbt", + "socks5-impl", "thiserror", "tokio", "tracing", @@ -495,6 +502,7 @@ dependencies = [ "serde", "serde_json", "simdnbt", + "socks5-impl", "thiserror", "tokio", "tokio-util", @@ -2533,6 +2541,20 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "socks5-impl" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dfc11441196e51be4f48c72b075e7fff394a3c6a43f93420f907a2708079b27" +dependencies = [ + "as-any", + "async-trait", + "byteorder", + "bytes", + "thiserror", + "tokio", +] + [[package]] name = "spin" version = "0.5.2" -- cgit v1.2.3