cqrs-es2-store

Sync implementation of the cqrs-es2 store.

Publish Test Latest version docs License


Provides sync interfaces to different database implementations for the CQRS system store.

Design

The main components of this library are:

Features

Installation

To use this library in a sync application, add the following to your dependency section in the project's Cargo.toml:

```toml [dependencies]

logging

log = { version = "^0.4", features = [ "maxleveldebug", "releasemaxlevel_warn", ] } fern = "^0.5"

serialization

serde = { version = "^1.0.127", features = ["derive"] } serde_json = "^1.0.66"

async-trait = "^0.1"

CQRS framework

cqrs-es2 = { version = "*"}

Sync postgres store implementation

cqrs-es2-store = { version = "*", default-features = false, features = [ "with-postgres", ] }

# postgres driver postgres = { version = "^0.19.1", features = ["with-serde_json-1"] } ```

Usage

Full sync store example applications are available here.

Change Log

A complete history of the change log can be found here

TODO

An up-to-date list of development aspirations can be found here