31 lines
672 B
TOML
31 lines
672 B
TOML
[package]
|
|
name = "pezsc-tracing-proc-macro"
|
|
version = "11.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Helper macros for Bizinikiwi's client CLI"
|
|
documentation = "https://docs.rs/pezsc-tracing-proc-macro"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro-crate = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
quote = { features = ["proc-macro"], workspace = true }
|
|
syn = { features = [
|
|
"extra-traits",
|
|
"full",
|
|
"parsing",
|
|
"proc-macro",
|
|
], workspace = true }
|