26 lines
628 B
Rust
26 lines
628 B
Rust
// client/src/lib.rs
|
|
|
|
#![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"));
|
|
|
|
pub mod app;
|
|
mod app_support;
|
|
pub mod handshake;
|
|
pub mod input;
|
|
pub mod launcher;
|
|
pub mod layout;
|
|
pub(crate) mod live_capture_clock;
|
|
pub mod output;
|
|
pub mod paste;
|
|
pub mod relay_transport;
|
|
pub mod sync_probe;
|
|
pub(crate) mod uplink_fresh_queue;
|
|
pub(crate) mod uplink_latency_harness;
|
|
pub(crate) mod uplink_telemetry;
|
|
pub(crate) mod video_support;
|
|
|
|
pub use app::LesavkaClientApp;
|