-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (50 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
61 lines (50 loc) · 1.19 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "kafka-replicator"
version = "0.5.0"
authors = ["Alex"]
edition = "2018"
description = "Application for replication data between kafka clusters."
readme = "README.md"
repository = "https://github.com/lispython/kafka-replicator/"
license-file = "LICENSE"
keywords = ["kafka", "replication", "observer"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = {version = "0.2.21", features = ["full"]}
structopt = "0.3.15"
clap = "2.33.1"
rand = "0.7.3"
regex = "1.3.9"
log = "0.4.0"
serde = "1.0"
serde_yaml = "0.8"
serde_json = "1.0"
toml = "0.5.6"
rdkafka-sys = "1.3.1"
rdkafka = { version = "0.23.1", features = ["ssl", "sasl"]}
env_logger = "0.7.1"
futures = "0.3.0"
byte-unit = "4.0.6"
pretty-bytes = "0.2.2"
prometheus = "0.9.0"
lazy_static = "1.4.0"
actix-web = "2.0.0"
actix-rt = "1.1.1"
ctrlc = "3.1.5"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
[lib]
name = "replicator"
path = "src/lib.rs"
[[bin]]
name = "kafka-replicator"
path = "src/main.rs"
[[bin]]
name = "kafka-producer"
path = "src/producer.rs"
[[bin]]
name = "kafka-observer"
path = "src/observer.rs"