17 lines
339 B
TOML
17 lines
339 B
TOML
|
[package]
|
||
|
name = "macros"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[lib]
|
||
|
proc-macro = true
|
||
|
|
||
|
[dependencies]
|
||
|
lazy_static = "1.4.0"
|
||
|
proc-macro-crate = "1.3.1"
|
||
|
proc-macro2 = "1.0.66"
|
||
|
quote = "1.0.31"
|
||
|
syn = { version = "2.0.26", features = ["full"] }
|