1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#![forbid(unsafe_code)] #![deny(missing_docs)] #![deny(clippy::all)] // #![warn(clippy::pedantic)] //! # postgres-es //! //! > A Postgres implementation of the `EventStore` trait in cqrs-es. //! //!  //! [](https://crates.io/crates/postgres-es) //! [](https://docs.rs/postgres-es) //! //! ## Installation //! //! //! ```toml //! [dependencies] //! postgres-es = "0.1.0" //! cqrs-es = "0.1.0" //! ``` pub use crate::store::*; pub use crate::aggregate_store::*; pub use crate::queries::*; pub use crate::cqrs::*; mod store; mod queries; mod cqrs; mod aggregate_store;