kurrentdb

Crates.iokurrentdb
lib.rskurrentdb
version
sourcesrc
created_at2025-02-27 20:54:02.483356+00
updated_at2025-03-25 20:24:59.819995+00
descriptionOfficial KurrentDB gRPC client
homepage
repositoryhttps://github.com/EventStore/EventStoreDB-Client-Rust
max_upload_size
id1572186
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Yo Eight (YoEight)

documentation

README

KurrentDB Rust Client

Crates.io Crates.io Build Status Discord Crates.io

Documentation

Official Rust KurrentDB rust gRPC gRPC Client.

KurrentDB is the event-native database, where business events are immutably stored and streamed. Designed for event-sourced, event-driven, and microservices architectures.

KurrentDB Server Compatibility

This client is compatible with version 20.6.1 upwards and works on Linux, MacOS and Windows.

Server setup instructions can be found here KurrentDB Docs, follow the docker setup for the simplest configuration.

Example

use kurrentdb::{ Client, EventData };
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize, Debug)]
struct Foo {
    is_rust_a_nice_language: bool,
}

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {

    // Creates a client settings for a single node configuration.
    let settings = "kurrentdb://admin:changeit@localhost:2113".parse()?;
    let client = Client::new(settings)?;

    let payload = Foo {
        is_rust_a_nice_language: true,
    };

    // It is not mandatory to use JSON as a data format however KurrentDB
    // provides great additional value if you do so.
    let evt = EventData::json("language-poll", &payload)?;

    client
        .append_to_stream("language-stream", &Default::default(), evt)
        .await?;

    let mut stream = client
        .read_stream("language-stream", &Default::default())
        .await?;

    while let Some(event) = stream.next().await? {
        let event = event.get_original_event()
          .as_json::<Foo>()?;

        // Do something productive with the result.
        println!("{:?}", event);
    }

    Ok(())
}

Support

Information on support can be found here: KurrentDB Support

Documentation

Documentation for KurrentDB can be found here: KurrentDB Docs

Bear in mind that this client is not yet properly documented. We are working hard on a new version of the documentation.

Communities

Commit count: 616

cargo fmt