-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
38 lines (37 loc) · 1.06 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
[package]
name = "mqttwrk"
description = "Wrk inspired tool for scale and performance testing mqtt brokers"
version = "0.2.0"
license = "Apache-2.0"
repository = "https://github.com/bytebeamio/mqttwrk"
authors = ["tekjar <[email protected]>"]
edition = "2018"
keywords = ["mqtt", "iot", "wrk", "cli"]
categories = ["network-programming"]
exclude = ["runit/", "scripts/", ".*"]
[dependencies]
# rumqttc = {git="https://github.com/bytebeamio/rumqtt.git", branch="master"}
# rumqttc = { path = "../rumqtt/rumqttc" }
bytes = "1"
anyhow = "1"
uuid = { version = "1", features = ["v4"] }
rumqttc = "0.20.0"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
rand = "0.8"
futures = "0.3"
log = "0.4"
thiserror = "1"
pretty_env_logger = "0.4"
hdrhistogram = "7.3.0"
whoami = "1"
flume = "0.10"
structopt = "0.3.20"
colour = "0.6.0"
colored = "2.0.0"
fake = { version = "2.5.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.91"
clap = { version = "4.0.32", features = ["derive"] }
indicatif = "0.17.3"
once_cell = "1.17.0"