eventure 0.0.17

Event-Driven messaging library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// -----------------------------------------------------------------------------------------------------------------------------------------
// Rust-Lang Libs/Eventure 2024
// -----------------------------------------------------------------------------------------------------------------------------------------

//! # Eventure
//!
//! Eventure is a library that supports event-driven messaging design pattern in Rust.
//!
//! Different message broker integrations are/will be implemented (In-Memory, Kafka, RabbitMQ, etc...),
//! supporting variety of different scenarios, both for monolith and microservice-based applications.

pub mod model;
pub mod in_memory;
pub mod kafka;
pub mod iggy;
mod common;