1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! Modular toolkit for working with FFXIV data.

// Lint config
#![allow(clippy::module_inception)]
#![warn(missing_debug_implementations, missing_docs)]
// Doc config
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]

mod error;
mod ironworks;
mod utility;

#[cfg(feature = "excel")]
pub mod excel;
#[cfg(feature = "ffxiv")]
pub mod ffxiv;
pub mod file;
pub mod sestring;
#[cfg(feature = "sqpack")]
pub mod sqpack;

pub use {
	error::{Error, ErrorValue},
	ironworks::{Ironworks, Resource},
};