2 releases

0.0.2 Jan 22, 2023
0.0.1 Jan 20, 2023

#1115 in HTTP server

28 downloads per month

MIT/Apache

17KB
306 lines

tower-kafka

Build crates.io docs.rs

A tower service for interacting with Apache Kafka (WIP).


lib.rs:

tower-kafka

A tower service for interacting with Apache Kafka.

Example

use tower_kafka::KafkaService;

    use tower_kafka::connect::TcpConnection;
    use tower_kafka::MakeService;
    let connection = TcpConnection::new("127.0.0.1:9093".parse().unwrap());
    let svc = MakeService::new(connection).into_service().await.unwrap();

Dependencies

~15–25MB
~322K SLoC