forked from xenji/kafka-topic-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 836 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
[package]
name = "kafka-topic-analyzer"
version = "0.3.1"
authors = ["Mario Mueller <[email protected]>"]
repository = "https://github.com/xenji/kafka-topic-analyzer"
license = "MIT"
keywords = ["cli", "kafka"]
categories = ["command-line-utilities"]
description = "An analyzer for getting metrics about the contents of a Apache Kafka topic"
[dependencies]
clap = "~2.29"
env_logger = "~0.5"
log = "~0.4"
prettytable-rs = "~0.6"
uuid = { version = "~0.6", features = ["v4"] }
chrono = "~0.4"
indicatif = "0.9.0"
rdkafka = "~0.15"
bit-set = "~0.4"
[features]
# We re-export the dynamic linking feature here to enable the user of this tool to decide wheter
# they opt into using the on-the-fly-compilation or dynamic linking.
# Details: https://github.com/fede1024/rust-rdkafka/#installation
dynamic_linking = ["rdkafka/dynamic_linking"]