-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (26 loc) · 844 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
[package]
name = "mqdish"
version = "1.1.0"
edition = "2021"
[[bin]]
name = "mqdish"
path = "src/bin/producer.rs"
[[bin]]
name = "mqdish-consumer"
path = "src/bin/consumer.rs"
[dependencies]
async-trait = "0.1.85"
clap = { version = "4.5.27", features = ["derive"] }
config = { version = "0.15.7", features = [ "yaml"], default-features = false }
dirs = "6.0.0"
lapin = { version = "2.5.0", default-features = false, features = ["openssl"] }
openssl = { version = "0.10.69", features = ["vendored"] } # allows to statically link binaries
openssl-probe = "0.1.6"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
serde_yaml = "0.9.33"
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread", "sync", "rt", "process"] }
tokio-stream = "0.1.17"
[dev-dependencies]
rand = "0.8.5"