diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-09-15 21:51:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-15 21:51:25 +0200 |
| commit | 5a1505db67d0326bf37b765c8a566584b44a2c1a (patch) | |
| tree | 4f1cadc6bc85f8538cc0c21ebc7354e404d48bcf /ext/node/Cargo.toml | |
| parent | 11f0ccf8052065e37f92d8ba43e9624fcd3b9814 (diff) | |
feat(ext/node): http2.connect() API (#19671)
This commit improves compatibility of "node:http2" module by polyfilling
"connect" method and "ClientHttp2Session" class. Basic operations like
streaming, header and trailer handling are working correctly.
Refing/unrefing is still a TODO and "npm:grpc-js/grpc" is not yet working
correctly.
---------
Co-authored-by: Matt Mastracci <matthew@mastracci.com>
Diffstat (limited to 'ext/node/Cargo.toml')
| -rw-r--r-- | ext/node/Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml index 07c2b2da5..44b56978e 100644 --- a/ext/node/Cargo.toml +++ b/ext/node/Cargo.toml @@ -17,12 +17,14 @@ path = "lib.rs" aead-gcm-stream = "0.1" aes.workspace = true brotli.workspace = true +bytes.workspace = true cbc.workspace = true data-encoding = "2.3.3" deno_core.workspace = true deno_fetch.workspace = true deno_fs.workspace = true deno_media_type.workspace = true +deno_net.workspace = true deno_npm.workspace = true deno_semver.workspace = true digest = { version = "0.10.5", features = ["core-api", "std"] } @@ -30,8 +32,10 @@ dsa = "0.6.1" ecb.workspace = true elliptic-curve.workspace = true errno = "0.2.8" +h2.workspace = true hex.workspace = true hkdf.workspace = true +http.workspace = true idna = "0.3.0" indexmap.workspace = true lazy-regex.workspace = true @@ -63,6 +67,7 @@ sha2.workspace = true signature.workspace = true tokio.workspace = true typenum = "1.15.0" +url.workspace = true whoami = "1.4.0" winapi.workspace = true # https://github.com/dalek-cryptography/x25519-dalek/pull/89 |
