more docs

This commit is contained in:
Stephan Dilly 2020-03-24 21:30:25 +01:00
parent 57da951004
commit 7c74cba839

View file

@ -4,9 +4,18 @@
This crate is part of the [gitui](http://gitui.org) project and can be used to annotate arbitrary scopes to `trace` their execution times via `log`:
in your crate:
```
[dependencies]
scopetime = "0.1"
```
in your code:
```rust
fn foo(){
scope_time!("foo");
// ... do something u wanna measure
}
```