// client/src/lib.rs #![forbid(unsafe_code)] pub const VERSION: &str = env!("CARGO_PKG_VERSION"); pub mod app; mod app_support; pub mod handshake; pub mod input; pub mod launcher; pub mod layout; pub mod output; pub mod paste; pub use app::LesavkaClientApp;