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/sym/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/sym/Cargo.toml')
| -rw-r--r-- | ext/napi/sym/Cargo.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ext/napi/sym/Cargo.toml b/ext/napi/sym/Cargo.toml new file mode 100644 index 000000000..7c9bf208c --- /dev/null +++ b/ext/napi/sym/Cargo.toml @@ -0,0 +1,21 @@ +# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. + +[package] +name = "napi_sym" +version = "0.103.0" +authors.workspace = true +edition.workspace = true +license.workspace = true +readme = "README.md" +repository.workspace = true +description = "proc macro for writing N-API symbols" + +[lib] +path = "./lib.rs" +proc-macro = true + +[dependencies] +quote.workspace = true +serde.workspace = true +serde_json.workspace = true +syn.workspace = true |
