summaryrefslogtreecommitdiffstats
path: root/mqtt-tester/Cargo.toml
blob: 28a3cc33a40460a5989f119984758732ff4b34ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "mqtt-tester"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ansi_term = "0.12.1"
async-trait = "0.1.68"
bytes = "1.4.0"
clap = { version = "4.1.11", features = ["derive"] }
futures = "0.3"
miette = { version = "5.7.0", features = ["fancy"] }
mqtt-format = { path = "../mqtt-format", version = "0.5.0" }
nom = { version = "7.1.3" }
textwrap = "0.16.0"
tokio = { version = "1.27", features = ["macros", "process", "rt", "rt-multi-thread", "io-util", "time"] }
static_assertions = "1.1.0"
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }