walker-common 0.17.0

Common functionality for SBOM and CSAF walker
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Command line helpers
pub mod client;
pub mod parser;
pub mod runner;

#[cfg(feature = "openpgp")]
pub mod validation;

#[cfg(feature = "env_logger")]
pub mod log;

pub trait CommandDefaults {
    fn progress(&self) -> bool {
        true
    }
}