diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-02-14 15:53:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-14 15:53:00 +0100 |
commit | b3c85c3548ac3c56f0cf0f3ace36a6f3de3bf823 (patch) | |
tree | ccf6b840b1ae00f6e5ee39655308bc40933d0cb4 /test_napi/tests/napi_tests.rs | |
parent | 201737c518237b271b5bbbd8e2b1fd19ce51fdd9 (diff) |
feat(node): stabilize Node-API (#17553)
This commit stabilizes Node-API, the "--unstable" flag is no longer
required to load native extensions. "--allow-ffi" permission is still
required to load them.
Diffstat (limited to 'test_napi/tests/napi_tests.rs')
-rw-r--r-- | test_napi/tests/napi_tests.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test_napi/tests/napi_tests.rs b/test_napi/tests/napi_tests.rs index cba96079e..747f6aa27 100644 --- a/test_napi/tests/napi_tests.rs +++ b/test_napi/tests/napi_tests.rs @@ -31,7 +31,6 @@ fn napi_tests() { .arg("--allow-env") .arg("--allow-ffi") .arg("--allow-run") - .arg("--unstable") .spawn() .unwrap() .wait_with_output() |