llrt_core 0.8.1-beta

LLRT Core for rquickjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#[cfg(not(feature = "lambda"))]
pub use llrt_modules::console;
pub use llrt_modules::{
    abort, assert, async_hooks, buffer, child_process, crypto, dns, events, exceptions, fetch, fs,
    https, module, navigator, net, os, path, perf_hooks, process, stream_web, string_decoder,
    timers, tls, tty, url, util, zlib,
};
pub use llrt_modules::{module_builder, package, CJS_IMPORT_PREFIX, CJS_LOADER_PREFIX};

#[cfg(feature = "lambda")]
pub mod console;
pub mod embedded;
pub mod llrt;