diff options
| author | Matt Mastracci <matthew@mastracci.com> | 2023-04-22 11:48:21 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-22 11:48:21 -0600 |
| commit | bdffcb409fd1e257db280ab73e07cc319711256c (patch) | |
| tree | 9aca1c1e73f0249bba8b66781b79c358a7a00798 /Cargo.toml | |
| parent | d137501a639cb315772866f6775fcd9f43e28f5b (diff) | |
feat(ext/http): Rework Deno.serve using hyper 1.0-rc3 (#18619)
This is a rewrite of the `Deno.serve` API to live on top of hyper
1.0-rc3. The code should be more maintainable long-term, and avoids some
of the slower mpsc patterns that made the older code less efficient than
it could have been.
Missing features:
- `upgradeHttp` and `upgradeHttpRaw` (`upgradeWebSocket` is available,
however).
- Automatic compression is unavailable on responses.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index aa12e1629..9edd7f835 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -91,7 +91,7 @@ data-url = "=0.2.0" dlopen = "0.1.8" encoding_rs = "=0.8.31" ecb = "=0.1.1" -fastwebsockets = "=0.2.5" +fastwebsockets = "=0.2.6" flate2 = "=1.0.24" fs3 = "0.5.0" futures = "0.3.21" @@ -126,6 +126,7 @@ serde_json = "1.0.85" serde_repr = "=0.1.9" sha2 = { version = "0.10.6", features = ["oid"] } signature = "=1.6.4" +slab = "0.4" smallvec = "1.8" socket2 = "0.4.7" tar = "=0.4.38" |
