openlogi_core/lib.rs
1//! Shared types and configuration for OpenLogi.
2//!
3//! This crate is deliberately I/O-free apart from filesystem reads/writes of
4//! the user config file. It must never depend on `hidpp`, `async-hid`, or any
5//! platform-specific event/window API — those live in sibling crates.
6
7pub mod binding;
8pub mod config;
9pub mod device;
10pub mod paths;