voa-core 0.4.1

File Hierarchy for the Verification of OS Artifacts (VOA)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]

mod error;
pub mod identifiers;
mod load_path;
mod macros;
mod util;
mod verifier;
mod voa;
mod write;

pub use error::Error;
pub use load_path::{LoadPath, LoadPathFilter, LoadPathList};
pub use verifier::{Verifier, VoaLocation};
pub use voa::Voa;
pub use write::VerifierWriter;