2021-01-10 21:59:07 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-12-13 13:45:53 -05:00
|
|
|
|
|
|
|
#![deny(warnings)]
|
|
|
|
|
2021-03-12 15:23:59 -05:00
|
|
|
pub use deno_console;
|
2020-12-13 13:45:53 -05:00
|
|
|
pub use deno_crypto;
|
|
|
|
pub use deno_fetch;
|
2021-04-06 06:55:05 -04:00
|
|
|
pub use deno_file;
|
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 10:17:18 -05:00
|
|
|
pub use deno_url;
|
2020-12-13 13:45:53 -05:00
|
|
|
pub use deno_web;
|
2021-03-01 05:31:13 -05: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 10:17:18 -05:00
|
|
|
pub use deno_webidl;
|
2021-01-06 10:57:28 -05:00
|
|
|
pub use deno_websocket;
|
2020-12-13 13:45:53 -05: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;
|