cqrs-es2 0.2.0

A lightweight, opinionated CQRS and event sourcing framework targetting serverless architectures.
Documentation

cqrs

A lightweight, opinionated CQRS and event sourcing framework targeting serverless architectures.

Test Crates.io docs


Installation

cqrs-es2 is available from Crates.io or Github.

[dependencies]
cqrs-es2 = "0.2.0"

Usage

Documentation is available here along with an introduction to CQRS and event sourcing.

A demo application is available here.

Change log

v0.2.0

  • Transfer of ownership
  • Upgrade dependencies
  • Add GitHub CI support
  • Convert to a modular structure
  • Correct mutability to match recent PostgresSQL changes

v0.1.0

  • Corrected to move all command and event logic into the aggregate.

Todos

  • Event upcasters.
  • Event serialization uses the event type as the root node of the JSON tree. This simplifies deserialization but is non-standard.
  • A persistence implementation for DynamoDb.
  • A persistence implementation for MySql.