diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-12-24 14:14:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-24 14:14:29 +0100 |
| commit | e1bfb29868cf49b949560bc3328ea824400a1319 (patch) | |
| tree | 492f63317c9bf4b8885e2ecf9bc4723826b4da42 /Cargo.toml | |
| parent | 92b2e28c6491f339124ec5851173ac0aaef93908 (diff) | |
refactor: use hyper 1.0 in grpc test server (#21584)
Ref https://github.com/denoland/deno/issues/21578
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml index 80a7e9571..b58977b78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -106,7 +106,9 @@ hex = "0.4" http = "0.2.9" h2 = { version = "0.3.17", features = ["unstable"] } httparse = "1.8.0" +hyper-util = { version = "=0.1.2", features = ["tokio", "server", "server-auto"] } hyper = { version = "0.14.26", features = ["runtime", "http1"] } +hyper1 = { package = "hyper", version = "=1.1.0", features = ["full"] } indexmap = { version = "2", features = ["serde"] } libc = "0.2.126" libz-sys = { version = "1.1", default-features = false } |
