code-timing-macros 0.0.7

Macros for easily measuring execution time of various code pieces
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "code-timing-macros"
version = "0.0.7"
authors = ["Richard Zak <richard.j.zak@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macros for easily measuring execution time of various code pieces"
readme = "README.md"
keywords = [
    "proc_macro",
    "profiling",
    "timing",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/rjzak/code-timing-macros"

[features]
default = []
release = []
testing = []
tracing = ["dep:tracing"]

[lib]
name = "code_timing_macros"
path = "src/lib.rs"
proc-macro = true

[[test]]
name = "test"
path = "tests/test.rs"

[dependencies.proc-macro2]
version = "1.0"

[dependencies.quote]
version = "1"

[dependencies.syn]
version = "2.0"
features = ["full"]

[dependencies.tracing]
version = "0.1"
optional = true
default-features = false

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
    "time",
]