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
31
32
33
34
35
36
37
// #![warn(clippy::pedantic)]
//! # postgres-es2
//!
//! **A Postgres implementation of the `EventStore` trait in
//! cqrs-es2.**
//!
//! [](https://github.com/brgirgis/postgres-es2/actions/workflows/crates-io.yml)
//! [](https://github.com/brgirgis/postgres-es2/actions/workflows/rust-ci.yml)
//! [](https://crates.io/crates/postgres-es2)
//! [](https://docs.rs/postgres-es2)
//!
//! ## Installation
//!
//! ```toml
//! [dependencies]
//! cqrs-es2 = "^0.2"
//! serde = { version = "^1.0.127", features = ["derive"] }
//! serde_json = "^1.0.66"
//! postgres-es2 = "0.2.3"
//! postgres = { version = "^0.19.1", features = ["with-serde_json-1"] }
//! ```
pub use crate::;