runtime/
lib.rs

1/*
2 * This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 */
6
7#![allow(clippy::missing_safety_doc, clippy::module_inception)]
8#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
9
10pub use crate::runtime::*;
11
12pub mod cache;
13pub mod config;
14pub mod event_loop;
15pub mod globals;
16pub mod module;
17#[cfg(feature = "tokio-promise")]
18pub mod promise;
19pub mod runtime;
20pub mod typescript;
21
22pub const VERSION: &str = env!("CARGO_PKG_VERSION");