1#![allow(clippy::result_large_err)]
2
3pub mod helpers;
4
5#[cfg(feature = "config")]
6mod config;
7
8#[cfg(all(feature = "config", feature = "env"))]
10pub mod env;
11
12#[cfg(feature = "config")]
13#[doc(hidden)]
14pub mod internal;
15
16#[cfg(feature = "config")]
18pub mod merge;
19
20#[cfg(feature = "schema")]
22pub mod schema;
23
24#[cfg(all(feature = "config", feature = "validate"))]
26pub mod validate;
27
28#[cfg(feature = "config")]
30pub use starbase_styles::color;
31
32#[cfg(feature = "config")]
33pub use config::*;
34
35#[cfg(any(feature = "config", feature = "schema"))]
38pub use schematic_macros::*;
39pub use schematic_types::{Schema, SchemaBuilder, SchemaType, Schematic};
40
41pub use serde_content;