xcell-errors 0.1.3

Error handlers for xcell
pub use futures::StreamExt;
#[cfg(feature = "walkdir")]
pub use walkdir::*;

#[cfg(feature = "async-walkdir")]
pub use for_async_walkdir::*;
#[cfg(feature = "bigdecimal")]
pub use for_bigdecimal::*;
#[cfg(feature = "calamine")]
pub use for_calamine::*;
#[cfg(feature = "chrono")]
pub use for_chrono::*;
#[cfg(feature = "csscolorparser")]
pub use for_csscolorparser::*;
#[cfg(feature = "globset")]
pub use for_globset::*;
#[cfg(feature = "notify")]
pub use for_notify::*;
#[cfg(feature = "num")]
pub use for_num::*;
pub use for_serde::*;
#[cfg(feature = "serde_json")]
pub use for_serde_json::*;

#[cfg(feature = "async-walkdir")]
mod for_async_walkdir;
#[cfg(feature = "bigdecimal")]
mod for_bigdecimal;
#[cfg(feature = "calamine")]
mod for_calamine;
#[cfg(feature = "chrono")]
mod for_chrono;
#[cfg(feature = "csscolorparser")]
mod for_csscolorparser;
#[cfg(feature = "globset")]
mod for_globset;
#[cfg(feature = "notify")]
mod for_notify;
#[cfg(feature = "num")]
mod for_num;
#[cfg(feature = "tera")]
mod for_tera;
#[cfg(feature = "toml")]
mod for_toml;
#[cfg(feature = "walkdir")]
mod for_walkdir;

mod for_serde;
#[cfg(feature = "serde_json")]
mod for_serde_json;

#[cfg(feature = "askama")]
mod for_askama;

#[cfg(feature = "url")]
pub use url::Url;