forked from iggy-rs/iggy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (40 loc) · 1.13 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
40
41
42
43
44
45
46
47
48
49
[package]
name = "iggy_examples"
version = "0.0.2"
edition = "2021"
[[example]]
name = "getting-started-consumer"
path = "src/getting-started/consumer/main.rs"
[[example]]
name = "getting-started-producer"
path = "src/getting-started/producer/main.rs"
[[example]]
name = "basic-consumer"
path = "src/basic/consumer/main.rs"
[[example]]
name = "basic-producer"
path = "src/basic/producer/main.rs"
[[example]]
name = "message-envelope-consumer"
path = "src/message-envelope/consumer/main.rs"
[[example]]
name = "message-envelope-producer"
path = "src/message-envelope/producer/main.rs"
[[example]]
name = "message-headers-consumer"
path = "src/message-headers/consumer/main.rs"
[[example]]
name = "message-headers-producer"
path = "src/message-headers/producer/main.rs"
[dependencies]
anyhow = "1.0.79"
bytes = "1.4.0"
clap = { version = "4.4.18", features = ["derive"] }
iggy = { path = "../sdk" }
rand = "0.8.5"
serde = { version = "1.0.196", features = ["derive", "rc"] }
serde_json = "1.0.113"
thiserror = "1.0.56"
tokio = { version = "1.36.0", features = ["full"] }
tracing = { version = "0.1.37" }
tracing-subscriber = { version = "0.3.16" }