-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
26 lines (24 loc) · 881 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.5.0"
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.33.0"
env_logger = "0.8.3"
log = "0.4.14"
prettytable-rs = "0.8.0"
uuid = { version = "0.7.4", features = ["v4"] }
chrono = "0.4.19"
indicatif = "0.15.0"
rdkafka = { version = "0.25.0", features = ["ssl"] }
bit-set = "0.5.2"
[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"]