1//! This crate is intended for use with pulsar science projects, mainly to 2//! provide file parsing. 3 4#![warn(missing_docs)] 5 6pub(crate) mod parse_tools; 7 8pub mod error; 9pub mod parfile; 10pub mod timfile; 11pub mod data_types;