2024-04-11 21:25:36 +02:00
|
|
|
[package]
|
2024-06-11 18:49:22 +02:00
|
|
|
name = "macros"
|
2024-07-09 11:25:32 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2024-07-09 11:36:45 +02:00
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
edition = { workspace = true }
|
|
|
|
rust-version = { workspace = true }
|
2024-04-11 21:25:36 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-11 18:49:22 +02:00
|
|
|
macros-impl = { workspace = true }
|
|
|
|
|
2024-04-11 21:25:36 +02:00
|
|
|
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"] }
|