doido-core 0.1.0

Core errors (thiserror), anyhow Result, serde, tracing, and regex helpers for the Doido framework.
Documentation
pub mod concerns;
pub mod core_ext;
pub mod crypto;
pub mod environment;
pub mod error;
pub mod inflector;
pub mod logger;
pub mod notifications;
pub mod test_time;
pub mod time_ext;
pub mod trace;

// Convenience re-exports so downstream crates depend only on doido-core.
pub use ::anyhow;
pub use ::async_trait::async_trait;
pub use ::serde;
pub use ::thiserror;
pub use ::tracing;

pub use environment::Environment;
pub use error::{AnyhowContext, Result};
pub use inflector::{init_inflections, load_inflections, InflectionConfig, Inflections, Inflector};
pub use logger::init as init_logger;
pub use logger::{LogFormat, LoggerConfig};