sqlite-es 0.5.0

An SQLite implementation of an event repository for cqrs-es.
Documentation
1
2
3
4
5
6
7
use crate::SqliteEventRepository;
use cqrs_es::persist::PersistedEventStore;
use cqrs_es::CqrsFramework;

/// A convenience type for a CqrsFramework backed by
/// [SqliteEventRepository](struct.SqliteEventRepository.html).
pub type SqliteCqrs<A> = CqrsFramework<A, PersistedEventStore<SqliteEventRepository, A>>;