Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ deno_error = { version = "0.7.0", features = ["serde_json", "serde", "url", "tok
deno_ops = { version = "0.262.0", path = "./ops" }
deno_unsync = "0.4.2"
serde_v8 = { version = "0.295.0", path = "./serde_v8" }
v8 = { version = "145.0.0", default-features = false }
v8 = { version = "146.1.0", default-features = false }

anyhow = "1"
bencher = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion core/ops_builtin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ pub fn op_print(
Ok(())
}

pub struct WasmStreamingResource(pub(crate) RefCell<v8::WasmStreaming>);
pub struct WasmStreamingResource(pub(crate) RefCell<v8::WasmStreaming<false>>);

impl Resource for WasmStreamingResource {
fn close(self: Rc<Self>) {
Expand Down
6 changes: 3 additions & 3 deletions core/runtime/tests/misc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1435,7 +1435,7 @@ async fn global_template_middleware() {
) -> v8::Intercepted {
CALLS.lock().push("descriptor".to_string());

v8::Intercepted::No
v8::Intercepted::kNo
}

pub fn setter<'s>(
Expand All @@ -1446,7 +1446,7 @@ async fn global_template_middleware() {
_rv: v8::ReturnValue<()>,
) -> v8::Intercepted {
CALLS.lock().push("setter".to_string());
v8::Intercepted::No
v8::Intercepted::kNo
}

fn definer<'s>(
Expand All @@ -1457,7 +1457,7 @@ async fn global_template_middleware() {
_rv: v8::ReturnValue<()>,
) -> v8::Intercepted {
CALLS.lock().push("definer".to_string());
v8::Intercepted::No
v8::Intercepted::kNo
}

pub fn gt_middleware<'s>(
Expand Down
Loading