mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
5a1505db67
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>
11 lines
208 B
Rust
11 lines
208 B
Rust
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
pub mod crypto;
|
|
pub mod http;
|
|
pub mod http2;
|
|
pub mod idna;
|
|
pub mod os;
|
|
pub mod require;
|
|
pub mod v8;
|
|
pub mod winerror;
|
|
pub mod zlib;
|