openracing 0.0.1

Crates.io reservation for the existing OpenRacing sim-racing force-feedback and telemetry project.
Documentation
//! Crates.io reservation package for the existing OpenRacing project.
//!
//! OpenRacing already exists as an EffortlessMetrics Rust project for
//! sim-racing force feedback, telemetry, device integration, and real-time
//! control work.
//!
//! This `0.0.1` crate does not expose the production API yet.

/// Returns the current crates.io package status.
#[must_use]
pub const fn status() -> &'static str {
    "openracing crates.io reservation"
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn status_identifies_reservation_package() {
        assert_eq!(status(), "openracing crates.io reservation");
    }
}