pkgcruft 0.0.18

QA library and tools based on pkgcraft
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod check;
pub mod error;
pub mod ignore;
pub mod iter;
pub mod report;
pub mod reporter;
mod runner;
pub mod scan;
pub mod source;
#[cfg(any(feature = "test", test))]
pub mod test;
mod utils;

pub use self::error::Error;

/// A `Result` alias where the `Err` case is `pkgcraft::Error`.
pub type Result<T> = std::result::Result<T, Error>;