Crates.io | cqrs-postgres |
lib.rs | cqrs-postgres |
version | 0.3.3 |
source | src |
created_at | 2019-02-01 17:56:21.991499 |
updated_at | 2019-09-05 16:56:42.663779 |
description | An implementation of cqrs for a PostgreSQL backend. |
homepage | |
repository | https://github.com/cq-rs/cqrs |
max_upload_size | |
id | 112056 |
size | 69,246 |
cqrs
is an event-driven framework for writing software that uses events as
the "source of truth" and implements command–query responsibility separation (CQRS).
The framework is built around a few key concepts:
The framework is written to be applicable to a generic backend, with an implementation provided for a PostgreSQL backend.
For an example of how to construct a domain which includes aggregates, events,
and commands, look at the cqrs-todo-core
crate, which is a simple to-do list
implementation.
The source repository also contains a binary in the cqrs-todoql-psql
directory
which demonstrates the use of the todo
domain in concert with the PostgreSQL
backend and a GraphQL frontend using the juniper
crate.
Minimum supported version of the Rust compiler is currently 1.32.
To build all crates in this repository:
cargo build
To test all crates and documentation:
cargo test
To compile documentation for the crates in the repository (remove --no-deps
to also include documentation for dependencies; add --open
to automatically
open the documentation in a browser):
cargo doc --no-deps
This crate aims to support the wasm32-unknown-unknown
target for the cqrs
,
cqrs-core
, and cqrs-todo-core
crates. To build against this target, execute:
cargo build --target=wasm32-unknown-unknown -p cqrs-core -p cqrs -p cqrs-todo-core
cqrs
is openly-licensed under the Apache-2.0 license.