distributed 1.7.3

CQRS/ES framework for Rust using Plain Old Rust Structs — append-only events, replay, snapshots, outbox, service bus, and pluggable infrastructure
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! microsvc integration tests.

mod basic;
mod convention;
mod handlers;
mod models;
mod session;
mod transport_listen;
mod transport_subscribe;

#[cfg(feature = "http")]
mod transport_http;

#[cfg(feature = "grpc")]
mod transport_grpc;