summaryrefslogtreecommitdiff
path: root/cli/napi/sym/Cargo.toml
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-11-28 17:28:54 -0500
committerGitHub <noreply@github.com>2022-11-28 17:28:54 -0500
commit2d4c46c975eb916dc622cc729a1a8d397582a76f (patch)
tree445e819117acd2f94ffc9d7da7ed8e3e604435d0 /cli/napi/sym/Cargo.toml
parentf526513d74d34ac254aa40ef9b73238cb21c395b (diff)
refactor: create util folder, move nap_sym to napi/sym, move http_cache to cache folder (#16857)
Diffstat (limited to 'cli/napi/sym/Cargo.toml')
-rw-r--r--cli/napi/sym/Cargo.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/cli/napi/sym/Cargo.toml b/cli/napi/sym/Cargo.toml
new file mode 100644
index 000000000..49a11fff9
--- /dev/null
+++ b/cli/napi/sym/Cargo.toml
@@ -0,0 +1,22 @@
+# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+
+[package]
+name = "napi_sym"
+version = "0.9.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]
+proc-macro2.workspace = true
+quote.workspace = true
+serde.workspace = true
+serde_json.workspace = true
+syn.workspace = true