napi-rs/crates/backend/Cargo.toml

28 lines
548 B
TOML
Raw Normal View History

[package]
2021-09-23 02:44:36 +09:00
description = "Codegen backend for napi procedural macro"
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-10-01 16:14:13 +09:00
version = "1.0.1"
[features]
strict = []
2021-09-23 02:44:36 +09:00
type-def = ["regex", "once_cell"]
[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"]}
[dependencies.regex]
optional = true
version = "1"
[dependencies.once_cell]
optional = true
version = "1"