diff options
author | Luca Casonato <hello@lcas.dev> | 2021-10-27 23:26:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-27 23:26:15 +0200 |
commit | be68b82eb43f8e6156bad562b292af11776d38b8 (patch) | |
tree | 3df7fe56e42ff5097a58964c2ea0f48dffad470e /core/bindings.rs | |
parent | 09dd77c13edf59eb3748b5f21bd8b7141d822f61 (diff) |
chore: update to rusty_v8 0.33.0 (#12564)
Diffstat (limited to 'core/bindings.rs')
-rw-r--r-- | core/bindings.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/bindings.rs b/core/bindings.rs index fc86a1136..2ba8059a0 100644 --- a/core/bindings.rs +++ b/core/bindings.rs @@ -13,7 +13,6 @@ use crate::OpTable; use crate::PromiseId; use crate::ZeroCopyBuf; use log::debug; -use rusty_v8 as v8; use serde::Deserialize; use serde::Serialize; use serde_v8::to_v8; @@ -633,7 +632,7 @@ fn set_wasm_streaming_callback( let undefined = v8::undefined(scope); let rid = serde_v8::to_v8(scope, streaming_rid).unwrap(); cb_handle - .get(scope) + .open(scope) .call(scope, undefined.into(), &[arg, rid]); }); } |