16 lines
355 B
TOML
16 lines
355 B
TOML
[package]
|
|
name = "maple-macro"
|
|
version = "0.1.1"
|
|
authors = ["Andrey Tkachenko <andreytkachenko64@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
syn = {version = "*", features=["full", "extra-traits"]}
|
|
quote = "*"
|
|
proc-macro2 = {version = "*", features=["nightly", "proc-macro"]}
|
|
maple-core = { path="../maple-core" }
|
|
nom = "4.1.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|