[package]
name = "kafrust"
version = "0.2.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "A pure Rust Kafka client with no librdkafka or C toolchain dependency."
readme = "README.md"
keywords.workspace = true
categories.workspace = true
[lints]
workspace = true
[dependencies]
kafrust-protocol = { version = "0.2.0", path = "../kafrust-protocol" }
tokio = { version = "1", features = ["io-util", "macros", "net", "rt", "sync", "time"] }
tracing = "0.1"
[dev-dependencies]
tokio = { version = "1", features = ["io-util", "macros", "net", "rt-multi-thread", "time"] }