eventually-core 0.4.0

Foundation crate for using Event Sourcing in Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Container for the fundamental types and abstraction to support Event Sourcing
//! and Command-Query Responsibility Segregation patterns.
//!
//! ## Note
//!
//! Generally, you should not depend from this crate directly, but instead
//! import the public crate: [`eventually`].
//!
//! Please refer to the public crate API documentation for more information.
//!
//! [`eventually`]: https://crates.io/crates/eventually

pub mod aggregate;
pub mod projection;
pub mod repository;
pub mod store;
pub mod subscription;
pub mod versioning;