thread_profiler 0.3.0

A thread profiling library that outputs profiles in the chromium trace format.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: rust
cache: cargo
rust:
  - nightly
  - beta
  - stable
script:
  - cargo test --all --verbose
  - cargo test --all --verbose --features thread_profiler
  - cargo run --example macro --verbose
  - cargo run --example simple --verbose
  - cargo run --example real_world_scenario --verbose --features thread_profiler
  - cargo build --all --verbose
matrix:
  allow_failures:
    - rust: nightly
  fast_finish: true