pitwall 0.1.0

Modern, type-safe Rust library for iRacing telemetry data
Documentation
1
2
3
4
5
6
7
8
9
//! IBT file reading and parsing support (cross-platform)
//!
//! This module provides support for reading iRacing's IBT (telemetry) files
//! and implementing the FrameProvider interface for unified telemetry streaming.

pub mod format;
pub mod reader;

pub use reader::IbtReader;