pub mod telemetry;
pub mod strategy;
pub mod race;
pub mod regulations;
pub mod track;
pub mod weather;
pub mod tire;
pub mod fuel;
pub mod types;
#[cfg(not(target_arch = "wasm32"))]
pub mod api;
pub use telemetry::*;
pub use strategy::*;
pub use race::*;
pub use regulations::*;
pub use track::*;
pub use weather::*;
pub use tire::*;
pub use fuel::*;
pub use types::*;
#[cfg(not(target_arch = "wasm32"))]
pub use api::*;
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub const MAX_RACE_LAPS: u16 = 78;
pub const GRID_SIZE: u8 = 20;
pub const MANDATORY_PIT_STOPS: u8 = 1;
pub const TELEMETRY_HZ: u32 = 1000;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_version() {
assert!(!VERSION.is_empty());
}
}