2025-06-08 22:24:14 -05:00
|
|
|
// client/src/lib.rs
|
|
|
|
|
|
2025-06-08 04:11:58 -05:00
|
|
|
#![forbid(unsafe_code)]
|
|
|
|
|
|
2026-04-16 21:36:16 -03:00
|
|
|
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
|
|
|
|
pub const BUILD_ID: &str = env!("LESAVKA_GIT_SHA");
|
|
|
|
|
pub const FULL_VERSION: &str = concat!(env!("CARGO_PKG_VERSION"), "+", env!("LESAVKA_GIT_SHA"));
|
2026-04-16 15:59:42 -03:00
|
|
|
|
2025-06-08 04:11:58 -05:00
|
|
|
pub mod app;
|
2026-04-10 15:56:18 -03:00
|
|
|
mod app_support;
|
2025-12-01 11:38:51 -03:00
|
|
|
pub mod handshake;
|
2025-06-08 04:11:58 -05:00
|
|
|
pub mod input;
|
2026-04-13 23:11:35 -03:00
|
|
|
pub mod launcher;
|
2025-06-29 04:54:39 -05:00
|
|
|
pub mod layout;
|
2025-12-01 11:38:51 -03:00
|
|
|
pub mod output;
|
2026-04-08 20:00:14 -03:00
|
|
|
pub mod paste;
|
2026-04-24 00:30:07 -03:00
|
|
|
pub(crate) mod uplink_fresh_queue;
|
|
|
|
|
pub(crate) mod uplink_latency_harness;
|
|
|
|
|
pub(crate) mod uplink_telemetry;
|
2026-04-17 06:14:54 -03:00
|
|
|
pub(crate) mod video_support;
|
2025-06-08 04:11:58 -05:00
|
|
|
|
2025-06-23 07:18:26 -05:00
|
|
|
pub use app::LesavkaClientApp;
|