mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 02:48:24 +00:00

This commit starts splitting out the deno_web op crate into multiple smaller crates. This commit splits out WebIDL and URL API, but in the future I want to split out each spec into its own crate. That means we will have (in rough order of loading): `webidl`, `dom`, `streams`, `console`, `encoding`, `url`, `file`, `fetch`, `websocket`, and `webgpu` crates.
30 lines
539 B
Rust
30 lines
539 B
Rust
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
#![deny(warnings)]
|
|
|
|
#[macro_use]
|
|
extern crate lazy_static;
|
|
#[macro_use]
|
|
extern crate log;
|
|
|
|
pub use deno_crypto;
|
|
pub use deno_fetch;
|
|
pub use deno_url;
|
|
pub use deno_web;
|
|
pub use deno_webgpu;
|
|
pub use deno_webidl;
|
|
pub use deno_websocket;
|
|
|
|
pub mod colors;
|
|
pub mod errors;
|
|
pub mod fs_util;
|
|
pub mod http_util;
|
|
pub mod inspector;
|
|
pub mod js;
|
|
pub mod metrics;
|
|
pub mod ops;
|
|
pub mod permissions;
|
|
pub mod resolve_addr;
|
|
pub mod tokio_util;
|
|
pub mod web_worker;
|
|
pub mod worker;
|