igc/lib.rs
1//! This crate provides a minimal, fast parser for IGC files.
2//!
3//! The low level record parser mirrors the raw format of an IGC file closely, and works to
4//! minimize the number of heap allocations made during parsing.
5//! It is intended to be used as an unopinionated base for building higher level data structures
6//! representing traces/tasks/etc..
7
8#[cfg(test)]
9#[macro_use]
10extern crate proptest;
11
12pub mod records;
13pub mod util;