elapsed-time 0.2.0

This crate help you to measure time taken by a function or a block of code for print debugging purpose. It output in stdout (using println) the elapsed time.
Documentation
[dependencies.log]
optional = true
version = "0.4.26"

[dependencies.quote]
version = "1.0"

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

[dependencies.tracing]
optional = true
version = "0.1.41"

[dev-dependencies.tracing-subscriber]
version = "0.3.20"

[features]
log = ["dep:log"]
tracing = ["dep:tracing"]

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "development-tools::debugging", "development-tools::profiling"]
description = "This crate help you to measure time taken by a function or a block of code for print debugging purpose. It output in stdout (using println) the elapsed time."
edition = "2021"
include = ["**/*.rs", "Cargo.toml", "Cargo.lock", "README.md"]
keywords = ["time", "measure", "debug", "performance", "metrics"]
license = "MIT"
name = "elapsed-time"
readme = "README.md"
repository = "https://github.com/nmeylan/elapsed-time"
version = "0.2.0"

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

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