kafkaesque 0.0.15

Kafka implementations in Rust (Unofficial)
Documentation
//! Unofficial Kafka implementations

#![feature(async_fn_in_trait)]
#![deny(warnings)]
#![deny(clippy::all)]
#![allow(incomplete_features)]
#![allow(unused)]

/// Common models
pub mod models;

/// Clients to Kafka brokers
pub mod clients;

/// Low-level formats and their codecs
pub mod formats;

/// Message producer
pub mod producer;