napi-rs/crates/backend/Cargo.toml

37 lines
701 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"
rust-version = "1.57"
version = "1.0.51"
[package.metadata.workspaces]
independent = true
[features]
2021-12-08 13:52:33 +09:00
noop = []
strict = []
type-def = ["regex", "once_cell", "semver"]
[dependencies]
convert_case = "0.6"
2021-09-23 02:44:36 +09:00
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"