From 2d4c46c975eb916dc622cc729a1a8d397582a76f Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 28 Nov 2022 17:28:54 -0500 Subject: refactor: create util folder, move nap_sym to napi/sym, move http_cache to cache folder (#16857) --- cli/napi/sym/Cargo.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cli/napi/sym/Cargo.toml (limited to 'cli/napi/sym/Cargo.toml') 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 -- cgit v1.2.3