1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![allow(clippy::new_without_default)]
#![allow(clippy::inherent_to_string)]
#![cfg_attr(rust_nightly, feature(portable_simd))]

#[macro_use]
mod macros;
mod bytearray_buffer;
// mod bytecode;
// #[cfg(not(feature = "lambda"))]
// pub mod compiler;
// #[cfg(not(feature = "lambda"))]
// mod compiler_common;
// pub mod environment;
pub mod json;
// mod minimal_tracer;
// mod module_builder;
pub mod modules;
pub mod number;
// pub mod runtime_client;
// mod security;
mod stream;
// mod test_utils;
pub mod utils;
pub mod vm;
pub mod start;

pub const VERSION: &str = env!("CARGO_PKG_VERSION");

// pub use rquickjs::{async_with, AsyncContext, CatchResultExt, Module};