diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | core/runtime.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index 9d068515e..1b1c8d0d3 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -21,7 +21,7 @@ lazy_static = "1.4.0" libc = "0.2.86" log = "0.4.14" pin-project = "1.0.5" -rusty_v8 = "0.20.0" +rusty_v8 = "0.21.0" serde = { version = "1.0.123", features = ["derive"] } serde_json = { version = "1.0.62", features = ["preserve_order"] } smallvec = "1.6.1" diff --git a/core/runtime.rs b/core/runtime.rs index 109732f0a..f6d0ab5a6 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -683,7 +683,7 @@ impl JsRuntime { let source_str = v8::String::new(scope, source).unwrap(); let origin = bindings::module_origin(scope, name_str); - let source = v8::script_compiler::Source::new(source_str, &origin); + let source = v8::script_compiler::Source::new(source_str, Some(&origin)); let tc_scope = &mut v8::TryCatch::new(scope); |