mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 12:49:10 +00:00
upgrade: rusty_v8 0.17.0, v8 9.0.123 (#9413)
This commit is contained in:
parent
b6353672f8
commit
a6723fafc5
3 changed files with 5 additions and 3 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -2237,9 +2237,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rusty_v8"
|
name = "rusty_v8"
|
||||||
version = "0.16.0"
|
version = "0.17.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a50f63f3030b5a676b9f6e7d53bf1f880904973c2350a3f034dbf82facca0b4f"
|
checksum = "e4cacd73b88c22512f09c5ec78e56eb89d95e4dc1201fe52bd6c81824b5e041b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"cargo_gn",
|
"cargo_gn",
|
||||||
|
|
|
@ -20,7 +20,7 @@ lazy_static = "1.4.0"
|
||||||
libc = "0.2.82"
|
libc = "0.2.82"
|
||||||
log = "0.4.13"
|
log = "0.4.13"
|
||||||
pin-project = "1.0.4"
|
pin-project = "1.0.4"
|
||||||
rusty_v8 = "0.16.0"
|
rusty_v8 = "0.17.0"
|
||||||
serde = { version = "1.0.121", features = ["derive"] }
|
serde = { version = "1.0.121", features = ["derive"] }
|
||||||
serde_json = { version = "1.0.61", features = ["preserve_order"] }
|
serde_json = { version = "1.0.61", features = ["preserve_order"] }
|
||||||
smallvec = "1.6.1"
|
smallvec = "1.6.1"
|
||||||
|
|
|
@ -210,6 +210,7 @@ pub extern "C" fn host_import_module_dynamically_callback(
|
||||||
context: v8::Local<v8::Context>,
|
context: v8::Local<v8::Context>,
|
||||||
referrer: v8::Local<v8::ScriptOrModule>,
|
referrer: v8::Local<v8::ScriptOrModule>,
|
||||||
specifier: v8::Local<v8::String>,
|
specifier: v8::Local<v8::String>,
|
||||||
|
_import_assertions: v8::Local<v8::FixedArray>,
|
||||||
) -> *mut v8::Promise {
|
) -> *mut v8::Promise {
|
||||||
let scope = &mut unsafe { v8::CallbackScope::new(context) };
|
let scope = &mut unsafe { v8::CallbackScope::new(context) };
|
||||||
|
|
||||||
|
@ -714,6 +715,7 @@ fn shared_getter(
|
||||||
pub fn module_resolve_callback<'s>(
|
pub fn module_resolve_callback<'s>(
|
||||||
context: v8::Local<'s, v8::Context>,
|
context: v8::Local<'s, v8::Context>,
|
||||||
specifier: v8::Local<'s, v8::String>,
|
specifier: v8::Local<'s, v8::String>,
|
||||||
|
_import_assertions: v8::Local<'s, v8::FixedArray>,
|
||||||
referrer: v8::Local<'s, v8::Module>,
|
referrer: v8::Local<'s, v8::Module>,
|
||||||
) -> Option<v8::Local<'s, v8::Module>> {
|
) -> Option<v8::Local<'s, v8::Module>> {
|
||||||
let scope = &mut unsafe { v8::CallbackScope::new(context) };
|
let scope = &mut unsafe { v8::CallbackScope::new(context) };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue