summaryrefslogtreecommitdiff
path: root/cli/napi_sym
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2022-11-22 21:07:35 +0100
committerGitHub <noreply@github.com>2022-11-22 21:07:35 +0100
commit13e3acf71dd8443d8d158087d8c0a0cb72167f9a (patch)
tree7455c069643f10bc9de5d6c8993defddeda378fd /cli/napi_sym
parent14904f6a2cac6b288a893add3e129c2668ea3a5a (diff)
chore: workspace inheritance (#16343)
Diffstat (limited to 'cli/napi_sym')
-rw-r--r--cli/napi_sym/Cargo.toml18
1 files changed, 11 insertions, 7 deletions
diff --git a/cli/napi_sym/Cargo.toml b/cli/napi_sym/Cargo.toml
index b2472f024..e521cca76 100644
--- a/cli/napi_sym/Cargo.toml
+++ b/cli/napi_sym/Cargo.toml
@@ -1,9 +1,13 @@
+# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+
[package]
name = "napi_sym"
version = "0.8.0"
-edition = "2021"
-license = "MIT"
+authors.workspace = true
+edition.workspace = true
+license.workspace = true
readme = "README.md"
+repository.workspace = true
description = "proc macro for writing N-API symbols"
[lib]
@@ -11,8 +15,8 @@ path = "./lib.rs"
proc-macro = true
[dependencies]
-proc-macro2 = "1"
-quote = "1"
-serde = { version = "1", features = ["derive"] }
-serde_json = "1"
-syn = { version = "1", features = ["full", "extra-traits"] }
+proc-macro2.workspace = true
+quote.workspace = true
+serde.workspace = true
+serde_json.workspace = true
+syn.workspace = true