1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Fix rust coverage based on source code.
//!
//! Correct coverage is useful if you want to know what kind of tests you should write
//! to avoid bugs in your project.
//! This crate offers utilities to read coverage information from file,
//! fix that information by choosing the rules, and save coverage into file.
//!
//! This crate is very customizable.
//! You can also create custom reader/writer by implementing
//! `CoverageReader`/`CoverageWriter` trait. If you want to define a new rule to
//! fix the coverage, implement `Rule` trait.
pub use *;
pub use *;
pub use *;