siggy/lib.rs
1//! Library entrypoint for fuzz testing and external consumers.
2//!
3//! The main binary has its own module tree; this surface re-exports only
4//! what fuzz harnesses need ([`config`], [`input`], [`keybindings`],
5//! [`signal`]).
6
7pub mod config;
8#[allow(dead_code)]
9mod debug_log;
10pub mod fs_migrate;
11pub mod input;
12pub mod keybindings;
13pub mod signal;