4e4b160f3a
napi-derive@2.0.3
31 lines
809 B
TOML
31 lines
809 B
TOML
[package]
|
|
authors = ["LongYinan <lynweklm@gmail.com>", "Forehalo <forehalo@gmail.com>"]
|
|
description = "N-API procedural macros"
|
|
edition = "2021"
|
|
keywords = ["NodeJS", "FFI", "NAPI", "n-api"]
|
|
license = "MIT"
|
|
name = "napi-derive"
|
|
readme = "README.md"
|
|
repository = "https://github.com/napi-rs/napi-rs"
|
|
version = "2.0.3"
|
|
|
|
[package.metadata.workspaces]
|
|
independent = true
|
|
|
|
[features]
|
|
compat-mode = []
|
|
default = ["compat-mode", "full"]
|
|
full = ["type-def", "strict"]
|
|
noop = ["napi-derive-backend/noop"]
|
|
strict = ["napi-derive-backend/strict"]
|
|
type-def = ["napi-derive-backend/type-def"]
|
|
|
|
[dependencies]
|
|
convert_case = "0.4"
|
|
napi-derive-backend = {version = "1.0.20", path = "../backend"}
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = {version = "1.0", features = ["fold", "full", "extra-traits"]}
|
|
|
|
[lib]
|
|
proc-macro = true
|