From 33c8d790c3d358a475c9ba828043e2c19e8d4b37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20Sj=C3=B6green?= Date: Fri, 6 Aug 2021 23:28:10 +0200 Subject: feat: ffi to replace plugins (#11152) This commit removes implementation of "native plugins" and replaces it with FFI API. Effectively "Deno.openPlugin" API was replaced with "Deno.dlopen" API. --- cli/tools/standalone.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tools') diff --git a/cli/tools/standalone.rs b/cli/tools/standalone.rs index dfec6c7dd..5f89b592d 100644 --- a/cli/tools/standalone.rs +++ b/cli/tools/standalone.rs @@ -201,7 +201,7 @@ pub fn compile_to_runtime_flags( allow_env: flags.allow_env, allow_hrtime: flags.allow_hrtime, allow_net: flags.allow_net, - allow_plugin: flags.allow_plugin, + allow_ffi: flags.allow_ffi, allow_read: flags.allow_read, allow_run: flags.allow_run, allow_write: flags.allow_write, -- cgit v1.2.3