diff options
| author | Matt Mastracci <matthew@mastracci.com> | 2023-11-08 13:00:29 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-08 13:00:29 -0700 |
| commit | 02c5f49a7aab7b8cfe5ad3b282e6668a1aecddbb (patch) | |
| tree | 64a9d9c25002bb9769457aa809ee9e2db57bf9aa /Cargo.lock | |
| parent | 5e82fce0a0051d694ab14467c120a1578c86bb42 (diff) | |
chore: refactor test_server and move to rustls-tokio-stream (#21117)
Remove tokio-rustls as a direct dependency of Deno and refactor
test_server to reduce code duplication.
All tcp and tls listener paths go through the same streams now, with the
exception of the simpler Hyper http-only handlers (those can be done in
a later follow-up).
Minor bugs fixed:
- gRPC server should only serve h2
- WebSocket over http/2 had a port overlap
- Restored missing eye-catchers for some servers (still missing on Hyper
ones)
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 9741b8c47..bec1a9bde 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4471,9 +4471,9 @@ dependencies = [ [[package]] name = "rustls-tokio-stream" -version = "0.2.7" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3abd2fa2e122bbf891a7333bf2091d8130367d8c381913821b24389208a3db45" +checksum = "55cae64d5219dfdd7f2d18dda421a2137ebdd63be6d0dc53d7836003f224f3d0" dependencies = [ "futures", "rustls", @@ -5677,6 +5677,7 @@ dependencies = [ "reqwest", "ring", "rustls-pemfile", + "rustls-tokio-stream", "semver 1.0.14", "serde", "serde_json", @@ -5684,7 +5685,6 @@ dependencies = [ "tempfile", "termcolor", "tokio", - "tokio-rustls", "url", "winapi", ] |
