kafka 0.3.2

Rust client for Apache Kafka
Documentation
[package]
name = "kafka"
version = "0.3.2"
authors = ["Yousuf Fauzan", "Petr Novotnik <pnovotnik@googlemail.com>"]
description = "Rust client for Apache Kafka"
homepage = "https://github.com/spicavigo/kafka-rust"
repository = "https://github.com/spicavigo/kafka-rust"
documentation = "https://spicavigo.github.io/kafka-rust/kafka/index.html"
readme = "README.md"
keywords = ["kafka", "queue"]
license = "MIT"


[dependencies]
byteorder = "0.4"
crc = "1.2"
log = "0.3"
ref_slice = "1.0"
fnv = "1.0"

flate2 = { version = "0.2", optional = true }
snappy = { version = "0.3", optional = true }
openssl = { version = "0.7", optional = true }


[dev-dependencies]
getopts = "0.2"
env_logger = "0.3"


[features]
default = ["snappy", "gzip", "security"]
gzip = ["flate2"]
security = ["openssl"]
nightly = []