napi-rs/napi-derive/Cargo.toml

19 lines
412 B
TOML
Raw Normal View History

2020-04-21 01:20:35 +09:00
[package]
authors = ["LongYinan <lynweklm@gmail.com>"]
2020-04-26 21:15:08 +09:00
description = "N-API procedural macros"
2020-10-11 22:36:14 +09:00
edition = "2018"
keywords = ["NodeJS", "FFI", "NAPI", "n-api"]
license = "MIT"
name = "napi-derive"
2020-04-26 20:57:31 +09:00
readme = "README.md"
2020-07-15 02:23:23 +09:00
repository = "https://github.com/napi-rs/napi-rs"
2020-12-30 01:56:08 +09:00
version = "1.0.0"
2020-04-21 01:20:35 +09:00
[dependencies]
proc-macro2 = "1.0"
2020-10-11 22:36:14 +09:00
quote = "1.0"
syn = {version = "1.0", features = ["fold", "full"]}
2020-04-21 01:20:35 +09:00
[lib]
proc-macro = true