2021-09-23 02:29:09 +09:00
|
|
|
[package]
|
2021-09-23 02:44:36 +09:00
|
|
|
description = "Codegen backend for napi procedural macro"
|
2021-09-23 02:29:09 +09:00
|
|
|
edition = "2018"
|
2021-09-23 02:44:36 +09:00
|
|
|
homepage = "https://napi.rs"
|
|
|
|
license = "MIT"
|
|
|
|
name = "napi-derive-backend"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/napi-rs/napi-rs"
|
2021-11-07 01:06:20 +09:00
|
|
|
version = "1.0.3"
|
2021-09-23 02:29:09 +09:00
|
|
|
|
|
|
|
[features]
|
|
|
|
strict = []
|
2021-09-23 02:44:36 +09:00
|
|
|
type-def = ["regex", "once_cell"]
|
2021-09-23 02:29:09 +09:00
|
|
|
|
|
|
|
[dependencies]
|
2021-09-23 02:44:36 +09:00
|
|
|
convert_case = "0.4"
|
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
|
|
|
syn = {version = "1", features = ["fold", "full", "extra-traits"]}
|
2021-09-23 02:29:09 +09:00
|
|
|
|
|
|
|
[dependencies.regex]
|
|
|
|
optional = true
|
|
|
|
version = "1"
|
|
|
|
|
|
|
|
[dependencies.once_cell]
|
|
|
|
optional = true
|
|
|
|
version = "1"
|
2021-11-01 00:35:39 +09:00
|
|
|
|
|
|
|
[package.metadata.workspaces]
|
|
|
|
independent = true
|