[package]
edition = "2021"
rust-version = "1.75"
name = "kafrust"
version = "0.1.0"
description = "A pure Rust Kafka client with no librdkafka or C toolchain dependency."
homepage = "https://github.com/TaeeunKil/kafrust"
readme = "README.md"
keywords = [
"kafka",
"client",
"async",
"protocol",
]
categories = [
"api-bindings",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TaeeunKil/kafrust"
[dependencies.kafrust-protocol]
version = "0.1.0"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"net",
"rt",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"time",
]
[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
panic = "warn"
todo = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"