forked from kafka-rust/kafka-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (29 loc) · 815 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "kafka"
version = "0.5.0"
authors = ["Yousuf Fauzan", "Petr Novotnik <[email protected]>"]
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.5"
crc = "1.3"
log = "0.3"
ref_slice = "1.0"
fnv = "1.0"
flate2 = { version = "0.2", optional = true }
snappy = { version = "0.4", optional = true }
openssl = { version = "0.7", optional = true }
[dev-dependencies]
getopts = "0.2"
env_logger = "0.3"
time = "0.1"
[features]
default = ["snappy", "gzip", "security"]
gzip = ["flate2"]
security = ["openssl"]
nightly = []