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-12-08 13:52:33 +09:00
|
|
|
edition = "2021"
|
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"
|
2022-05-20 17:23:10 +09:00
|
|
|
rust-version = "1.57"
|
2023-05-27 13:28:43 +09:00
|
|
|
version = "1.0.52"
|
2021-12-22 01:19:07 +09:00
|
|
|
|
|
|
|
[package.metadata.workspaces]
|
|
|
|
independent = true
|
2021-09-23 02:29:09 +09:00
|
|
|
|
|
|
|
[features]
|
2021-12-08 13:52:33 +09:00
|
|
|
noop = []
|
2021-09-23 02:29:09 +09:00
|
|
|
strict = []
|
2023-03-22 18:35:55 +09:00
|
|
|
type-def = ["regex", "once_cell", "semver"]
|
2021-09-23 02:29:09 +09:00
|
|
|
|
|
|
|
[dependencies]
|
2022-12-09 19:59:50 +09:00
|
|
|
convert_case = "0.6"
|
2021-09-23 02:44:36 +09:00
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2022-09-01 11:50:48 +09:00
|
|
|
syn = { version = "1.0.61", 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"
|
2023-03-22 18:35:55 +09:00
|
|
|
|
|
|
|
[dependencies.semver]
|
|
|
|
optional = true
|
|
|
|
version = "1"
|