1 | [package] |
2 | description = "Codegen backend for napi procedural macro" |
3 | edition = "2021" |
4 | homepage = "https://napi.rs" |
5 | license = "MIT" |
6 | name = "napi-derive-backend" |
7 | readme = "README.md" |
8 | repository = "https://github.com/napi-rs/napi-rs" |
9 | rust-version = "1.65" |
10 | version = "1.0.62" |
11 | |
12 | [package.metadata.workspaces] |
13 | independent = true |
14 | |
15 | [features] |
16 | noop = [] |
17 | strict = [] |
18 | type-def = ["regex" , "semver" ] |
19 | |
20 | [dependencies] |
21 | convert_case = "0.6" |
22 | once_cell = "1" |
23 | proc-macro2 = "1" |
24 | quote = "1" |
25 | syn = { version = "2" , features = ["fold" , "full" , "extra-traits" ] } |
26 | |
27 | [dependencies.regex] |
28 | optional = true |
29 | version = "1" |
30 | |
31 | [dependencies.semver] |
32 | optional = true |
33 | version = "1" |
34 | |