napi-rs/crates/backend/Cargo.toml
LongYinan 688ee04247
Release independent packages
- napi-build@2.1.0
- napi-derive@2.14.0
- napi@2.14.0
- napi-sys@2.3.0
2023-11-07 14:18:36 +08:00

36 lines
701 B
TOML

[package]
description = "Codegen backend for napi procedural macro"
edition = "2021"
homepage = "https://napi.rs"
license = "MIT"
name = "napi-derive-backend"
readme = "README.md"
repository = "https://github.com/napi-rs/napi-rs"
rust-version = "1.65"
version = "1.0.53"
[package.metadata.workspaces]
independent = true
[features]
noop = []
strict = []
type-def = ["regex", "once_cell", "semver"]
[dependencies]
convert_case = "0.6"
proc-macro2 = "1"
quote = "1"
syn = { version = "1.0.61", features = ["fold", "full", "extra-traits"] }
[dependencies.regex]
optional = true
version = "1"
[dependencies.once_cell]
optional = true
version = "1"
[dependencies.semver]
optional = true
version = "1"