2024-04-11 21:25:36 +02:00
|
|
|
[package]
|
2024-05-18 11:20:44 +02:00
|
|
|
name = "macro-rs"
|
2024-04-11 21:25:36 +02:00
|
|
|
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 }
|
2024-05-18 09:47:21 +02:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2024-05-30 12:09:32 +02:00
|
|
|
serde_json = { workspace = true, features = ["std"] }
|
|
|
|
syn = { workspace = true, features = ["extra-traits", "full"] }
|
2024-04-11 21:28:51 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
napi = { workspace = true }
|
2024-05-28 10:22:18 +02:00
|
|
|
napi-derive = { workspace = true, features = ["noop"] }
|