mirror of
https://github.com/denoland/deno.git
synced 2025-01-21 21:50:00 -05:00
chore: update rusty_v8 to 0.56.1 (#16835)
This commit is contained in:
parent
55da1a2e72
commit
d8ab492d01
3 changed files with 5 additions and 4 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -5387,9 +5387,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "v8"
|
name = "v8"
|
||||||
version = "0.56.0"
|
version = "0.56.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4182d3112bf61cc6bbc4839b728c27d5aa5c6b12ee26b91b039308715a61c208"
|
checksum = "f7591a2478046263bc28ec09c70f4a43a5ac33b60f4480a29e2dde1ba4335c24"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"fslock",
|
"fslock",
|
||||||
|
|
|
@ -40,7 +40,7 @@ license = "MIT"
|
||||||
repository = "https://github.com/denoland/deno"
|
repository = "https://github.com/denoland/deno"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
v8 = { version = "0.56.0", default-features = false }
|
v8 = { version = "0.56.1", default-features = false }
|
||||||
deno_ast = { version = "0.21.0", features = ["transpiling"] }
|
deno_ast = { version = "0.21.0", features = ["transpiling"] }
|
||||||
|
|
||||||
deno_core = { version = "0.161.0", path = "./core" }
|
deno_core = { version = "0.161.0", path = "./core" }
|
||||||
|
|
|
@ -183,12 +183,13 @@ impl JsRuntimeInspector {
|
||||||
// Tell the inspector about the global context.
|
// Tell the inspector about the global context.
|
||||||
let context = v8::Local::new(scope, context);
|
let context = v8::Local::new(scope, context);
|
||||||
let context_name = v8::inspector::StringView::from(&b"global context"[..]);
|
let context_name = v8::inspector::StringView::from(&b"global context"[..]);
|
||||||
|
let aux_data = v8::inspector::StringView::from(&b""[..]);
|
||||||
self_
|
self_
|
||||||
.v8_inspector
|
.v8_inspector
|
||||||
.borrow_mut()
|
.borrow_mut()
|
||||||
.as_mut()
|
.as_mut()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.context_created(context, Self::CONTEXT_GROUP_ID, context_name);
|
.context_created(context, Self::CONTEXT_GROUP_ID, context_name, aux_data);
|
||||||
|
|
||||||
// Poll the session handler so we will get notified whenever there is
|
// Poll the session handler so we will get notified whenever there is
|
||||||
// new incoming debugger activity.
|
// new incoming debugger activity.
|
||||||
|
|
Loading…
Add table
Reference in a new issue