diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-06-29 01:43:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-29 01:43:03 +0200 |
commit | 38a7128cdd6f3308ba3c13cfb0b0d4ef925a44c3 (patch) | |
tree | 8f0c86028d9ba0266f1846e7f3611f7049cb43a8 /runtime/ops/mod.rs | |
parent | 30cba2484815f712502ae8937a25afa13aba0818 (diff) |
feat: Add "deno_net" extension (#11150)
This commits moves implementation of net related APIs available on "Deno"
namespace to "deno_net" extension.
Following APIs were moved:
- Deno.listen()
- Deno.connect()
- Deno.listenTls()
- Deno.serveHttp()
- Deno.shutdown()
- Deno.resolveDns()
- Deno.listenDatagram()
- Deno.startTls()
- Deno.Conn
- Deno.Listener
- Deno.DatagramConn
Diffstat (limited to 'runtime/ops/mod.rs')
-rw-r--r-- | runtime/ops/mod.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/ops/mod.rs b/runtime/ops/mod.rs index b05a91180..c94020780 100644 --- a/runtime/ops/mod.rs +++ b/runtime/ops/mod.rs @@ -2,18 +2,13 @@ pub mod fs; pub mod fs_events; -pub mod http; pub mod io; -pub mod net; -#[cfg(unix)] -mod net_unix; pub mod os; pub mod permissions; pub mod plugin; pub mod process; pub mod runtime; pub mod signal; -pub mod tls; pub mod tty; mod utils; pub mod web_worker; |