diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-12-23 16:46:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-23 15:46:09 +0000 |
| commit | 36536c784ca981ae01d258d4239b2a362017d533 (patch) | |
| tree | 7aa41e54ae7a088f5f494ceef2aab8c466cc8067 /runtime/Cargo.toml | |
| parent | 140e8becd0cd3a0183c3f28f6ce3812ebcd76036 (diff) | |
refactor: upgrade inspector server to Hyper 1.1 (#21599)
This commit rewrites "runtime/inspector_server.rs" to use Hyper 1.1.
Now "deno_runtime" crate depends on both Hyper 1.x and 0.y versions.
Diffstat (limited to 'runtime/Cargo.toml')
| -rw-r--r-- | runtime/Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 2e9fc4d7e..a00a4f669 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -98,10 +98,15 @@ fastwebsockets.workspace = true console_static_text.workspace = true dlopen2.workspace = true encoding_rs.workspace = true +fastwebsockets_06 = { package = "fastwebsockets", version = "0.6", features = ["upgrade"] } filetime = "0.2.16" fs3.workspace = true http.workspace = true +http-body-util = "0.1" +http_1 = { package = "http", version = "1.0" } hyper = { workspace = true, features = ["server", "stream", "http1", "http2", "runtime"] } +hyper-util = { version = "0.1", features = ["server", "server-auto"] } +hyper1 = { package = "hyper", version = "1.0.1", features = ["server"] } libc.workspace = true log.workspace = true netif = "0.1.6" |
