From 13e3acf71dd8443d8d158087d8c0a0cb72167f9a Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Tue, 22 Nov 2022 21:07:35 +0100 Subject: chore: workspace inheritance (#16343) --- cli/napi_sym/Cargo.toml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'cli/napi_sym') 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 -- cgit v1.2.3