lesavka/client/src/lib.rs

23 lines
548 B
Rust
Raw Normal View History

2025-06-08 22:24:14 -05:00
// client/src/lib.rs
2025-06-08 04:11:58 -05:00
#![forbid(unsafe_code)]
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"));
2025-06-08 04:11:58 -05:00
pub mod app;
mod app_support;
pub mod handshake;
2025-06-08 04:11:58 -05:00
pub mod input;
pub mod launcher;
2025-06-29 04:54:39 -05:00
pub mod layout;
pub mod output;
pub mod paste;
pub(crate) mod uplink_fresh_queue;
pub(crate) mod uplink_latency_harness;
pub(crate) mod uplink_telemetry;
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;