doido-core 0.0.3

Core errors (thiserror), anyhow Result, serde, tracing, and regex helpers for the Doido framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod error;
pub mod inflector;
pub mod logger;
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 error::{AnyhowContext, Result};
pub use inflector::{init_inflections, load_inflections, InflectionConfig, Inflections, Inflector};
pub use logger::init as init_logger;