1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//! This module provides a safe layer for interacting with the legacy Gauge
//! API provided with Microsoft Flight Simulator.

#![warn(
    missing_docs,
    unused_import_braces,
    unused_imports,
    unused_qualifications
)]
#![deny(missing_debug_implementations, unused_must_use)]

pub mod ffi;

mod types;

pub use types::*;

#[doc(hidden)]
pub mod once_cell {
    pub use once_cell::sync::Lazy;
}