postgres-es 0.3.0

A Postgres implementation of an event repository for cqrs-es.
docs.rs failed to build postgres-es-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: postgres-es-0.4.11

postgres-es

A Postgres implementation of the EventStore trait in cqrs-es.


Usage

Add to your Cargo.toml file:

[dependencies]
cqrs-es = "0.2.5"
persist-es = "0.2.5"
postgres-es = "0.2.5"

Requires access to a Postgres DB with existing tables. See:

A simple configuration example:

let store = default_postgress_pool("postgresql://my_user:my_pass@localhost:5432/my_db");
let cqrs = postgres_es::postgres_cqrs(pool, vec![])

Things that could be helpful:

Crates.io docs