1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![deny(clippy::all, clippy::nursery, missing_docs)]
#![warn(clippy::pedantic)]
#![allow(clippy::cast_possible_truncation)]

//! HEMTT - Arma 3 Config Parser
//!
//! Requires that files first be tokenized by the [`hemtt_preprocessor`] crate.

mod error;
pub use error::Error;
mod model;
pub use model::*;
mod options;
pub use options::{Options, Preset};
mod rapify;
pub use rapify::Rapify;