2024-01-01 19:58:21 +00:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2022-11-22 20:07:35 +00:00
|
|
|
|
2022-10-05 14:06:44 +00:00
|
|
|
[package]
|
|
|
|
name = "napi_sym"
|
2024-03-14 21:23:24 +00:00
|
|
|
version = "0.72.0"
|
2022-11-22 20:07:35 +00:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-10-08 14:02:34 +00:00
|
|
|
readme = "README.md"
|
2022-11-22 20:07:35 +00:00
|
|
|
repository.workspace = true
|
2022-10-05 14:06:44 +00:00
|
|
|
description = "proc macro for writing N-API symbols"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "./lib.rs"
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-22 20:07:35 +00:00
|
|
|
proc-macro2.workspace = true
|
|
|
|
quote.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
syn.workspace = true
|