napi-rs/crates/backend/Cargo.toml

32 lines
609 B
TOML
Raw Normal View History

[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"
version = "1.0.17"
[features]
2021-12-08 13:52:33 +09:00
noop = []
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"
2021-11-01 00:35:39 +09:00
[package.metadata.workspaces]
independent = true