0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2025-02-01 20:24:56 -05:00
denoland-rusty-v8/src/lib.rs

36 lines
775 B
Rust
Raw Normal View History

2019-11-01 13:50:12 -04:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2019-10-22 22:58:11 -07:00
#![warn(clippy::all)]
#![allow(clippy::missing_safety_doc)]
#![allow(clippy::new_without_default)]
2019-10-22 22:58:11 -07:00
#![allow(dead_code)]
#[macro_use]
extern crate lazy_static;
extern crate libc;
mod handle_scope;
mod inspector;
mod isolate;
mod local;
mod locker;
mod string_buffer;
mod string_view;
mod support;
mod value;
pub mod array_buffer;
2019-10-22 14:52:43 -07:00
pub mod platform;
2019-11-30 08:47:26 -08:00
// This module is intentionally named "V8" rather than "v8" to match the
// C++ namespace "v8::V8".
#[allow(non_snake_case)]
pub mod V8;
2019-10-17 16:46:54 -07:00
pub use handle_scope::HandleScope;
pub use isolate::Isolate;
pub use local::Local;
pub use locker::Locker;
2019-10-17 16:46:54 -07:00
pub use string_buffer::StringBuffer;
pub use string_view::StringView;
pub use value::{Integer, Number};