forked from LYZJU2019/rafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (28 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
27
28
29
30
31
32
33
34
[package]
name = "kafka-core-rs"
version = "0.1.0"
authors = ["[email protected]"]
edition = "2021"
description = "Realize basic kafka functionalities using rust. Educational purpose only and not intended for production"
keywords = ["kafka", "message-queue", "infrastructure"]
publish = false
[workspace]
resolver = "2"
members = [
"crates/core",
"crates/broker",
"crates/producer",
"crates/consumer",
"crates/storage",
"crates/hooks",
"crates/utils",
]
[dependencies]
tokio = { version = "1.41.1", features = ["full"] }
my_core = { package = "core", path = "crates/core" }
producer = { package = "producer", path = "crates/producer" }
broker = { package = "broker", path = "crates/broker" }
storage = { package = "storage", path = "crates/storage" }
consumer = { package = "consumer", path = "crates/consumer" }
chrono = "0.4.38"
anyhow = "1.0.93"