[package]
edition = "2024"
rust-version = "1.93"
name = "miden-node-tracing-macro"
version = "0.15.1"
authors = ["Miden contributors"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for Miden node tracing"
homepage = "https://miden.xyz"
readme = false
keywords = [
"macro",
"miden",
"node",
"tracing",
]
license = "MIT"
repository = "https://github.com/0xMiden/node"
resolver = "2"
[lib]
name = "miden_node_tracing_macro"
path = "src/lib.rs"
test = false
doctest = false
proc-macro = true
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"visit",
]
[lints.clippy]
allow_attributes = "deny"
cast_possible_truncation = "allow"
collapsible-if = "allow"
from_iter_instead_of_collect = "allow"
ignored_unit_patterns = "allow"
large_types_passed_by_value = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_for_each = "allow"
should_panic_without_expect = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1