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