napi-rs/crates/backend/Cargo.toml

34 lines
650 B
TOML
Raw Normal View History

[package]
2021-09-23 01:44:36 +08:00
description = "Codegen backend for napi procedural macro"
2021-12-08 12:52:33 +08:00
edition = "2021"
2021-09-23 01:44:36 +08: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 20:18:29 +08:00
rust-version = "1.65"
version = "2.0.0-alpha.1"
[package.metadata.workspaces]
independent = true
[features]
2021-12-08 12:52:33 +08:00
noop = []
strict = []
type-def = ["regex", "semver"]
[dependencies]
convert_case = "0.6"
once_cell = "1"
2021-09-23 01:44:36 +08:00
proc-macro2 = "1"
quote = "1"
2023-12-13 12:40:01 +08:00
syn = { version = "2", features = ["fold", "full", "extra-traits"] }
[dependencies.regex]
optional = true
version = "1"
[dependencies.semver]
optional = true
version = "1"