[package]
edition = "2021"
rust-version = "1.92"
name = "barnabas-client"
version = "0.2.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The runtime-agnostic barnabas Kafka client: consumer groups, transactions, admin. Generic over a four-function transport."
readme = "README.md"
keywords = [
"kafka",
"client",
"producer",
"consumer",
"transactions",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/slipstreamhq/barnabas"
[lib]
name = "barnabas_client"
path = "src/lib.rs"
[[test]]
name = "adversarial"
path = "tests/adversarial.rs"
[[test]]
name = "builder_stages"
path = "tests/builder_stages.rs"
[dependencies.barnabas-core]
version = "0.2.0"
[dependencies.bytes]
version = "1"
[dependencies.hmac]
version = "0.12"
[dependencies.kafka-protocol]
version = "0.17"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dev-dependencies.futures-lite]
version = "2"