diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | core/lib.rs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index 3f8c531af..67b46d1a6 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ # Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. [package] name = "deno_core" -version = "0.91.0" +version = "0.92.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["the Deno authors"] diff --git a/core/lib.rs b/core/lib.rs index 89edf39a2..4a9a213f4 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -88,6 +88,7 @@ pub use crate::runtime::Snapshot; // pub use crate::runtime_modules::include_js_files!; pub use crate::extensions::Extension; pub use crate::extensions::OpMiddlewareFn; +pub use crate::extensions::OpPair; pub fn v8_version() -> &'static str { v8::V8::get_version() |