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/ops_builtin.rs | |
parent | 09dd77c13edf59eb3748b5f21bd8b7141d822f61 (diff) |
chore: update to rusty_v8 0.33.0 (#12564)
Diffstat (limited to 'core/ops_builtin.rs')
-rw-r--r-- | core/ops_builtin.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ops_builtin.rs b/core/ops_builtin.rs index c830f8eff..d33565caf 100644 --- a/core/ops_builtin.rs +++ b/core/ops_builtin.rs @@ -98,7 +98,7 @@ pub fn op_print( Ok(()) } -pub struct WasmStreamingResource(pub(crate) RefCell<rusty_v8::WasmStreaming>); +pub struct WasmStreamingResource(pub(crate) RefCell<v8::WasmStreaming>); impl Resource for WasmStreamingResource { fn close(self: Rc<Self>) { |