[package]
edition = "2021"
name = "libninja_macro"
version = "0.1.0"
authors = []
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macros for inline code"
readme = false
license = "MIT"
[lib]
name = "libninja_macro"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "body"
path = "tests/body.rs"
[[test]]
name = "function"
path = "tests/function.rs"
[[test]]
name = "rfunction"
path = "tests/rfunction.rs"
[[test]]
name = "test_only_need_single_braces"
path = "tests/test_only_need_single_braces.rs"
[dependencies.proc-macro2]
version = "1.0"
features = ["span-locations"]
[dependencies.quote]
version = "1.0.29"
[dependencies.syn]
version = "2.0.77"
[dev-dependencies.pretty_assertions]
version = "1.3.0"