buildlog-consultant 0.1.3

buildlog parser and analyser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Module containing problem definitions for various build systems.
//!
//! This module provides problems that can be identified in build logs,
//! organized by the build system or tool they relate to.

/// Problems specific to autopkgtest logs.
pub mod autopkgtest;

/// Common problems that can occur in various build environments.
pub mod common;

/// Problems specific to Debian packaging and build tools.
pub mod debian;