2024-04-11 21:25:36 +02:00
|
|
|
[package]
|
|
|
|
name = "macro_rs"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.74"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
convert_case = { workspace = true }
|
|
|
|
proc-macro2 = { workspace = true }
|
|
|
|
quote = { workspace = true }
|
|
|
|
syn = { workspace = true, features = ["full", "extra-traits"] }
|
2024-04-11 21:28:51 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
napi = { workspace = true }
|
|
|
|
#napi-derive = { workspace = true }
|