wptreport 0.0.1

Tools for working with WPT reports
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod report;
mod score;

pub use report::{
    RunInfo, SubtestResult, SubtestStatus, TestResult, TestScore, TestStatus, WptReport, WptScores,
};
pub use score::{score_wpt_report, AreaScores};

// Use jemalloc as the allocator
#[cfg(not(target_env = "msvc"))]
#[global_allocator]
static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;