eventually/lib.rs
1//! `eventually` is a crate that helps you apply different patterns to your Rust
2//! application domain code, such as: Event Sourcing, Aggregate Root, Outbox Pattern,
3//! and so on.
4
5#![deny(unsafe_code, unused_qualifications, trivial_casts, missing_docs)]
6#![deny(clippy::all, clippy::pedantic, clippy::cargo)]
7
8pub mod aggregate;
9pub mod command;
10pub mod event;
11pub mod message;
12pub mod query;
13pub mod serde;
14#[cfg(feature = "tracing")]
15pub mod tracing;
16pub mod version;