flamescope

Export flame data to speedscope's format.

Usage

```rust use flame; use flamescope; use std::fs::File;

fn main() { let mainguard = flame::startguard("main"); { let scopeguard = flame::startguard("inner scope"); } mainguard.end(); flamescope::dump(&mut File::create("flamescope.json").unwrap()).unwrap(); } ```

License

This project is licensed under the MIT license. Please see the LICENSE file for more details.