-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 1.41 KB
/
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
37
38
39
[package]
name = "ksunami"
version = "0.1.10"
edition = "2021"
authors = ["Ivan De Marino <[email protected]>", "Kafkesc <https://github.com/kafkesc>"]
repository = "https://github.com/kafkesc/ksunami"
homepage = "https://github.com/kafkesc/ksunami"
description = "Produce constant, configurable, cyclical waves of Kafka Records"
license = "MIT OR Apache-2.0"
keywords = ["kafka", "workload", "testing", "performance", "developer-tools"]
categories = ["command-line-utilities", "development-tools"]
exclude = [
".github/",
".cargo/",
".gitignore",
"images/*",
"CHANGELOG_GUIDANCE.md"
]
[dependencies]
flo_curves = "0.7.2"
clap = { version = "4.5.4", features = ["derive", "deprecated", "env", "wrap_help"] }
log = "0.4.21"
env_logger = "0.11.3"
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "time", "sync", "macros"] }
rand = "0.8.5"
futures = "0.3.30"
ctrlc = { version = "3.4.4", features = ["termination"] }
# TODO https://github.com/kafkesc/ksunami/issues/39
#[target.'cfg(windows)'.dependencies]
#rdkafka = { version = "0.34.0", features = ["cmake-build", "ssl-vendored", "libz-static"] }
[target.'cfg(unix)'.dependencies]
rdkafka = { version = "0.36.2", features = ["ssl-vendored", "gssapi-vendored", "libz-static"] }
[profile.release]
strip = true # Automatically strip symbols from the binary.
lto = true # Link time optimization - see https://llvm.org/docs/LinkTimeOptimization.html.