2021-01-11 02:59:07 +00:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-12-13 18:45:53 +00:00
|
|
|
|
2021-03-12 20:23:59 +00:00
|
|
|
pub use deno_console;
|
2020-12-13 18:45:53 +00:00
|
|
|
pub use deno_crypto;
|
|
|
|
pub use deno_fetch;
|
2021-04-06 10:55:05 +00:00
|
|
|
pub use deno_file;
|
2021-05-02 12:28:36 +00:00
|
|
|
pub use deno_timers;
|
chore: split web op crate (#9635)
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.
2021-03-12 15:17:18 +00:00
|
|
|
pub use deno_url;
|
2020-12-13 18:45:53 +00:00
|
|
|
pub use deno_web;
|
2021-03-01 10:31:13 +00:00
|
|
|
pub use deno_webgpu;
|
chore: split web op crate (#9635)
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.
2021-03-12 15:17:18 +00:00
|
|
|
pub use deno_webidl;
|
2021-01-06 15:57:28 +00:00
|
|
|
pub use deno_websocket;
|
2020-12-13 18:45:53 +00:00
|
|
|
|
|
|
|
pub mod colors;
|
|
|
|
pub mod errors;
|
|
|
|
pub mod fs_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;
|