timetrap 0.1.0

Macros to wrap your code and measure time
Documentation
# timetrap
[![Rust](https://github.com/vladneyo/timetrap/actions/workflows/rust.yml/badge.svg)](https://github.com/vladneyo/timetrap/actions/workflows/rust.yml)

## 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;
     ...
});
```