diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-12-27 17:59:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-27 11:59:57 -0500 |
| commit | c2414db1f68d27db8ca6f192f0ff877f1394164c (patch) | |
| tree | 528da9796f400557204bfdb8e4d44d64173036ce /ext/http/Cargo.toml | |
| parent | 33acd437f52b418a8413a302dd8902abad2eabec (diff) | |
refactor: simplify hyper, http, h2 deps (#21715)
Main change is that:
- "hyper" has been renamed to "hyper_v014" to signal that it's legacy
- "hyper1" has been renamed to "hyper" and should be the default
Diffstat (limited to 'ext/http/Cargo.toml')
| -rw-r--r-- | ext/http/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml index 8192cf31e..a10a79449 100644 --- a/ext/http/Cargo.toml +++ b/ext/http/Cargo.toml @@ -32,11 +32,11 @@ deno_net.workspace = true deno_websocket.workspace = true flate2.workspace = true http.workspace = true -http_1 = { package = "http", version = "=1.0.0" } +http_v02.workspace = true httparse.workspace = true -hyper = { workspace = true, features = ["server", "stream", "http1", "http2", "runtime"] } +hyper.workspace = true hyper-util.workspace = true -hyper1.workspace = true +hyper_v014 = { workspace = true, features = ["server", "stream", "http1", "http2", "runtime"] } itertools = "0.10" memmem.workspace = true mime = "0.3.16" |
