pub mod cli;
#[cfg(feature = "install")]
pub mod install;
#[cfg(feature = "install")]
pub mod package_cache;
pub mod render;
#[cfg(test)]
mod test_env;
pub mod theme;
pub mod validate;
pub use render::{
RenderDiagnostic, RenderError, compile_html, compile_html_resolved, compile_pdf, compile_text,
compile_text_resolved, compile_theme, compile_theme_resolved,
};
pub use theme::{
OwnedTheme, ResolvedTheme, THEMES, Theme, ThemeResolveError, find_theme, resolve_theme,
};
pub use validate::{ValidationError, validate_value};
pub const JSON_RESUME_SCHEMA: &str = include_str!("../assets/schema/jsonresume-v1.0.0.json");
pub const JSON_RESUME_SCHEMA_VERSION: &str = "1.0.0";