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 differential;
9pub mod finding;
10pub mod mutate;
11pub mod property;
12pub mod redact;
13pub mod run;
14pub mod sarif;
15pub mod seed;
16pub mod target;
17
18#[cfg(test)]
19mod tests {
20 #[test]
21 fn core_crate_loads() {
22 assert_eq!(env!("CARGO_PKG_NAME"), "wallfacer-core");
23 }
24}