siggy 1.8.0

Terminal-based Signal messenger client with vim keybindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Library entrypoint for fuzz testing and external consumers.
//!
//! The main binary has its own module tree; this surface re-exports only
//! what fuzz harnesses need ([`config`], [`input`], [`keybindings`],
//! [`signal`]).

pub mod config;
#[allow(dead_code)]
mod debug_log;
pub mod fs_migrate;
pub mod input;
pub mod keybindings;
pub mod signal;