diff options
| author | snek <snek@deno.com> | 2024-10-24 09:13:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-24 09:13:54 +0200 |
| commit | 79a3ad2b950009f560641cea359d7deb6f7a61ac (patch) | |
| tree | a775ff101d1513b24a8cc0afc80fdcbd4c6c9074 /ext/napi/Cargo.toml | |
| parent | 27df42f659ae7b77968d31363ade89addb516ea1 (diff) | |
feat: support node-api in denort (#26389)
exposes node-api symbols in denort so that `deno compile` can run native
addons.
Diffstat (limited to 'ext/napi/Cargo.toml')
| -rw-r--r-- | ext/napi/Cargo.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/napi/Cargo.toml b/ext/napi/Cargo.toml index ef2e41d57..ed39d96df 100644 --- a/ext/napi/Cargo.toml +++ b/ext/napi/Cargo.toml @@ -16,5 +16,14 @@ path = "lib.rs" [dependencies] deno_core.workspace = true deno_permissions.workspace = true +libc.workspace = true libloading = { version = "0.7" } +log.workspace = true +napi_sym.workspace = true thiserror.workspace = true + +[target.'cfg(windows)'.dependencies] +windows-sys.workspace = true + +[dev-dependencies] +libuv-sys-lite = "=1.48.2" |
