wallfacer_core/lib.rs
1// Phase A introduces `missing_docs = "warn"` so future modules grow rustdoc.
2// Existing 0.1 surface is undocumented; allowing here keeps the warning useful
3// for new code. To be lifted progressively in Phase B/C.
4#![allow(missing_docs)]
5
6pub mod client;
7pub mod corpus;
8pub mod coverage;
9pub mod differential;
10pub mod finding;
11pub mod fuzz_corpus;
12pub mod mutate;
13pub mod property;
14pub mod redact;
15pub mod report;
16pub mod run;
17pub mod sarif;
18pub mod seed;
19pub mod shrink;
20pub mod suggest;
21pub mod target;
22
23#[cfg(test)]
24mod tests {
25 #[test]
26 fn core_crate_loads() {
27 assert_eq!(env!("CARGO_PKG_NAME"), "wallfacer-core");
28 }
29}