dendrite 0.3.0

Event Sourcing and CQRS in Rust with AxonServer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure().build_server(false).compile(
        &[
            "proto/axon_server/command.proto",
            "proto/axon_server/control.proto",
            "proto/axon_server/event.proto",
            "proto/axon_server/query.proto"
        ],
        &["proto/axon_server"]
    )?;
    Ok(())
}