[package]
edition = "2021"
name = "proflogger_proc"
version = "0.1.2"
authors = ["Mackenzie Gray <me@mackenziedgray.com>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implements a macro to enable automatic function profiling. Should be used with proflogger."
readme = false
keywords = [
"profile",
"log",
]
categories = ["date-and-time"]
license = "MIT"
repository = "https://github.com/mackenziedg/proflogger/tree/main/proc"
[lib]
name = "proflogger_proc"
path = "src/lib.rs"
proc-macro = true
[dependencies.log]
version = "0.4.21"
[dependencies.quote]
version = "1.0.36"
[dependencies.syn]
version = "2.0.66"
features = ["full"]
[lints.clippy]
complexity = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"