1pub mod binary;
22mod compress;
23mod discovery;
24mod parser;
25mod types;
26mod validator;
27
28#[cfg(feature = "axum")]
29pub mod axum;
30
31pub use binary::{FafbError, FafbHeader, Flags, Priority, SectionEntry, SectionTable, SectionType};
32pub use compress::{compress, estimate_tokens, CompressionLevel};
33pub use discovery::{find_and_parse, find_faf_file, FindError};
34pub use parser::{parse, parse_file, stringify, FafError, FafFile};
35pub use types::*;
36pub use validator::{validate, ValidationResult};
37
38pub const VERSION: &str = env!("CARGO_PKG_VERSION");