diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-12-26 14:32:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-26 14:32:21 +0100 |
| commit | 8fbac6739545d1d874eb1af0b2b9dddff576786c (patch) | |
| tree | cd0c32251546dc491eea1c0a7fd9d4f758a1623e /cli/Cargo.toml | |
| parent | 753777b4affb6020739b4f74932a278f6f8afcce (diff) | |
refactor: change cli/ to use hyper 1.1 (#21705)
Diffstat (limited to 'cli/Cargo.toml')
| -rw-r--r-- | cli/Cargo.toml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 413da7db8..77aded6da 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -95,14 +95,12 @@ dprint-plugin-typescript = "=0.88.7" encoding_rs.workspace = true env_logger = "=0.10.0" fancy-regex = "=0.10.0" -fastwebsockets.workspace = true # If you disable the default __vendored_zlib_ng feature above, you _must_ be able to link against `-lz`. flate2.workspace = true fs3.workspace = true glob = "0.3.1" hex.workspace = true http.workspace = true -hyper.workspace = true import_map = { version = "=0.18.0", features = ["ext"] } indexmap.workspace = true jsonc-parser = { version = "=0.23.0", features = ["serde"] } @@ -152,7 +150,13 @@ nix.workspace = true [dev-dependencies] deno_bench_util.workspace = true +fastwebsockets_06 = { package = "fastwebsockets", version = "0.6", features = ["upgrade", "unstable-split"] } flaky_test = "=0.1.0" +h2_04 = { package = "h2", version = "0.4" } +http-body-util = "0.1" +http_1 = { package = "http", version = "1.0" } +hyper-util.workspace = true +hyper1.workspace = true once_cell.workspace = true os_pipe.workspace = true pretty_assertions.workspace = true |
