From 92764c0decb370b0f8a78770314ceda7228d315f Mon Sep 17 00:00:00 2001 From: Mathias Lafeldt Date: Thu, 10 Nov 2022 12:46:26 +0100 Subject: feat(runtime): support creating workers with custom v8 snapshots (#16553) This PR makes it possible for applications to create workers from custom snapshots to improve runtime performance (without having to fork/copy `runtime/workers.rs`). --- runtime/examples/hello_runtime.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/examples') diff --git a/runtime/examples/hello_runtime.rs b/runtime/examples/hello_runtime.rs index 1f3610789..d71cc467a 100644 --- a/runtime/examples/hello_runtime.rs +++ b/runtime/examples/hello_runtime.rs @@ -43,6 +43,7 @@ async fn main() -> Result<(), AnyError> { inspect: false, }, extensions: vec![], + startup_snapshot: None, unsafely_ignore_certificate_errors: None, root_cert_store: None, seed: None, -- cgit v1.2.3