diff options
| author | Sean McArthur <sean@seanmonstar.com> | 2024-07-31 15:44:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-01 00:44:03 +0200 |
| commit | fbcd250bc8ffb3b577afca7131d1d37f55eb47a2 (patch) | |
| tree | 8e69ebaaa21c3850128f40bddf996ed1e429e7d4 /Cargo.lock | |
| parent | d3419f7d147b8c362a3795c8284d55ff6f4f3492 (diff) | |
fix(ext/fetch): use correct ALPN to socks5 proxies (#24817)
Closes #24632
Closes #24719
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 7ab9d8da3..c676f78b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1478,6 +1478,7 @@ dependencies = [ "deno_permissions", "deno_tls", "dyn-clone", + "fast-socks5", "http 1.1.0", "http-body-util", "hyper 1.4.1", @@ -2694,6 +2695,20 @@ dependencies = [ ] [[package]] +name = "fast-socks5" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f89f36d4ee12370d30d57b16c7e190950a1a916e7dbbb5fd5a412f5ef913fe84" +dependencies = [ + "anyhow", + "async-trait", + "log", + "thiserror", + "tokio", + "tokio-stream", +] + +[[package]] name = "faster-hex" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" |
