quickjs-rusty 0.11.1

A rusty QuickJS (QuickJS-NG) Javascript engine wrapper, and more.
Documentation
mod array;
#[cfg(feature = "bigint")]
mod bigint;

mod atom;
mod compiled_function;
mod function;
mod module;
mod object;
mod promise;
mod tag;
mod value;

use std::fmt::Debug;

pub use libquickjs_ng_sys as q;

pub use array::OwnedJsArray;
pub use atom::*;
#[cfg(feature = "bigint")]
pub use bigint::*;
pub use compiled_function::*;
pub use function::*;
pub use module::*;
pub use object::*;
pub use promise::*;
pub use tag::*;
pub use value::*;