[package]
edition = "2024"
name = "kafkit-client"
version = "0.1.9"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Kafka 4.0+ pure Rust client."
homepage = "https://github.com/LeonHartley/kafka-client-rs"
documentation = "https://docs.rs/kafkit-client"
readme = "README.md"
keywords = [
"kafka",
"client",
"producer",
"consumer",
"async",
]
categories = [
"api-bindings",
"asynchronous",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/LeonHartley/kafka-client-rs"
[lib]
name = "kafkit_client"
path = "src/lib.rs"
[[example]]
name = "cluster_operations_report"
path = "examples/cluster_operations_report.rs"
[[example]]
name = "customer_profile_projection"
path = "examples/customer_profile_projection.rs"
[[example]]
name = "order_workflow"
path = "examples/order_workflow.rs"
[[example]]
name = "transactional_order_worker"
path = "examples/transactional_order_worker.rs"
[[example]]
name = "websocket_broadcast"
path = "examples/websocket_broadcast.rs"
[[test]]
name = "admin_integration"
path = "tests/admin_integration.rs"
[[test]]
name = "api_integration"
path = "tests/api_integration.rs"
[[test]]
name = "consumer_integration"
path = "tests/consumer_integration.rs"
[[test]]
name = "edge_cases_integration"
path = "tests/edge_cases_integration.rs"
[[test]]
name = "kafka_stress"
path = "tests/kafka_stress.rs"
[[test]]
name = "producer_integration"
path = "tests/producer_integration.rs"
[[test]]
name = "sasl_integration"
path = "tests/sasl_integration.rs"
[[test]]
name = "share_integration"
path = "tests/share_integration.rs"
[[test]]
name = "tls_integration"
path = "tests/tls_integration.rs"
[[test]]
name = "transaction_integration"
path = "tests/transaction_integration.rs"
[[test]]
name = "turmoil_network"
path = "tests/turmoil_network.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22"
[dependencies.bytes]
version = "1.11"
[dependencies.getrandom]
version = "0.4"
[dependencies.hmac]
version = "0.13"
[dependencies.kafka-protocol]
version = "0.17.0"
[dependencies.metrics]
version = "0.24.3"
[dependencies.num-bigint]
version = "0.4"
[dependencies.regex]
version = "1.12"
[dependencies.rustls]
version = "0.23"
[dependencies.rustls-pemfile]
version = "2.2"
[dependencies.sha2]
version = "0.11"
[dependencies.subtle]
version = "2.6"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.52"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.tokio-rustls]
version = "0.26"
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
features = ["attributes"]
[dependencies.uuid]
version = "1.23"
features = ["v4"]
[dependencies.webpki-roots]
version = "1.0"
[dev-dependencies.axum]
version = "0.8"
features = ["ws"]
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.testcontainers]
version = "0.27.3"
[dev-dependencies.turmoil]
version = "0.7.1"