onionwire/src/lib.rs
Sirius DevOps e63203ff56
All checks were successful
ci / test (push) Successful in 4m11s
feat: incoming rate limit, identity backup, v0.2.0
App-level token bucket on rend accepts (30/60s, burst 10), panic-safe TUI restore, sqlite WAL + integrity_check fail-closed. Encrypted owbak1 identity backup/restore. README and threat model cover profile, XMR sidecar, backup, mixed-version frames.
2026-09-10 14:50:01 -04:00

16 lines
300 B
Rust

pub mod backup;
pub mod dispatch;
pub mod frame;
pub mod hs;
pub mod loc;
pub mod node;
pub mod pay;
pub mod profile;
pub mod qr;
pub mod ratelimit;
pub mod session;
mod store;
pub mod tui;
pub mod wallet;
pub use store::{Friend, FriendProfile, Message, Payment, PaymentWrite, SelfIdentity, Store};