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"
|
2023-10-17 21:18:29 +09:00
|
|
|
rust-version = "1.65"
|
2024-02-08 21:41:45 +09:00
|
|
|
version = "1.0.60"
|
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"
|
2023-12-13 13:40:01 +09:00
|
|
|
syn = { version = "2", 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"
|