36 lines
932 B
TOML
36 lines
932 B
TOML
[package]
|
|
name = "pez-tracing-gum-proc-macro"
|
|
version = "5.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Generate an overseer including builder pattern and message wrapper from a single annotated struct definition."
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/pez-tracing-gum-proc-macro"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
expander = { workspace = true }
|
|
proc-macro-crate = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { features = ["extra-traits", "full"], workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
# write the expanded version to a `gum.[a-f0-9]{10}.rs`
|
|
# in the `OUT_DIR` as defined by `cargo` for the `expander` crate.
|
|
expand = []
|