1//! See the parser module for functions to parse GBX files and buffers [parser](gbx::parser). 2//! The datastructures used are found in [gbx](gbx). 3pub mod gbx; 4 5pub use gbx::parser::{parse_from_buffer, parse_from_file};