diff options
Diffstat (limited to 'runtime/lib.rs')
-rw-r--r-- | runtime/lib.rs | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs index c92f5aea2..a729d88f7 100644 --- a/runtime/lib.rs +++ b/runtime/lib.rs @@ -90,23 +90,28 @@ pub static UNSTABLE_GRANULAR_FLAGS: &[( "Enable unstable net APIs", 7, ), - ("temporal", "Enable unstable Temporal API", 8), + ( + ops::process::UNSTABLE_FEATURE_NAME, + "Enable unstable process APIs", + 8, + ), + ("temporal", "Enable unstable Temporal API", 9), ( "unsafe-proto", "Enable unsafe __proto__ support. This is a security risk.", // This number is used directly in the JS code. Search // for "unstableIds" to see where it's used. - 9, + 10, ), ( deno_webgpu::UNSTABLE_FEATURE_NAME, "Enable unstable `WebGPU` API", - 10, + 11, ), ( ops::worker_host::UNSTABLE_FEATURE_NAME, "Enable unstable Web Worker APIs", - 11, + 12, ), ]; |