1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Built-in [`Provider`](crate::Provider) implementations for common sources.
//!
//! The [top-level docs](crate#built-in-providers) contain a list and
//! description of each provider.

mod serialized;
mod data;

#[cfg(feature = "env")] mod env;
#[cfg(feature = "env")] pub use self::env::Env;

pub use self::serialized::Serialized;
pub use self::data::*;