rillflow 0.1.0-alpha.1

Rillflow — a lightweight document + event store for Rust, powered by Postgres.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Rillflow — document + event store for Rust, powered by Postgres.

pub mod documents;
mod error;
pub mod events;
pub mod projections;
pub mod store;
pub mod testing;
pub mod tracing;

pub use error::{Error, Result};
pub use events::{Event, Expected};
pub use store::Store;

pub mod prelude {
    pub use crate::{Event, Expected, Result, Store};
}