diff options
Diffstat (limited to 'runtime/build.rs')
-rw-r--r-- | runtime/build.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/build.rs b/runtime/build.rs index e6f7de641..3003fb231 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -48,10 +48,12 @@ fn create_runtime_snapshot(snapshot_path: &Path, files: Vec<PathBuf>) { None, None, None, + None, ), deno_websocket::init::<deno_websocket::NoWebSocketPermissions>( "".to_owned(), None, + None, ), deno_webstorage::init(None), deno_crypto::init(None), @@ -62,7 +64,10 @@ fn create_runtime_snapshot(snapshot_path: &Path, files: Vec<PathBuf>) { false, // No --unstable. ), deno_ffi::init::<deno_ffi::NoFfiPermissions>(false), - deno_net::init::<deno_net::NoNetPermissions>(None, false), // No --unstable. + deno_net::init::<deno_net::NoNetPermissions>( + None, false, // No --unstable. + None, + ), deno_http::init(), ]; |