2 releases
Uses new Rust 2024
new 0.1.1 | Mar 30, 2025 |
---|---|
0.1.0 | Mar 30, 2025 |
#498 in Profiling
33 downloads per month
5KB
timetrap
Description
timetrap
library is intended to wrap your code and measure the time of its execution.
Install it as:
cargo install timetrap
Example of use:
use timetrap::trap;
trap!({
let a = 0;
...
});