-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (35 loc) · 969 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
37
38
[package]
name = "kafky"
version = "0.2.0"
edition = "2021"
authors = ["[email protected]"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.14"
env_logger = "0.9.0"
tokio = { version = "1", features = ["full"] }
clap = "2.33.3"
home = "0.5.3"
serde = { version = "1.0.130", features = ["derive"] }
serde_yaml = "0.8.21"
serde_json = "1.0.69"
config = "0.11.0"
thiserror = "1.0"
rdkafka = { version = "0.25", features = ["cmake-build", "ssl"] }
gethostname = "0.2.1"
strum = "0.22"
strum_macros = "0.22"
which = "4.2.2"
base64 = "0.13.0"
byteorder = "1.4.3"
tabwriter = "1.2.1"
chrono = "0.4.19"
tempfile = "3.2.0"
rustyline = "9.0.0"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false # Disable features which are enabled by default
features = ["precommit-hook", "run-cargo-fmt", "run-cargo-test", "run-cargo-clippy"]
[dev-dependencies]
mockall = "0.10.2"
indoc = "1.0.3"