-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (34 loc) · 1.02 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
[package]
name = "rmqtt-bench"
version = "0.1.5"
authors = ["rmqtt <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rmqtt/rmqtt-bench"
homepage = "https://github.com/rmqtt/rmqtt-bench"
description = "rmqtt-bench - MQTT benchmark tool"
[[bin]]
name = "rmqtt-bench"
path = "src/main.rs"
[target.'cfg(target_os = "linux")'.dependencies]
tikv-jemallocator = "0.5"
[dependencies]
ntex-mqtt = "0.9"
ntex = { version = "0.5.16", features = ["tokio", "rustls"] }
ntex-bytes = "0.1"
rust-box = { version = "0.7.1", features = ["event", "std-ext"] }
futures = "0.3"
structopt = "0.3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"], default-features = false }
log = "0.4"
env_logger = "0.10.0"
rand = "0.8"
uuid = { version = "0.8.1", features = ["v4"] }
update_rate = { version = "2.0" }
dashmap = "5.4"
ahash = "0.8.3"
once_cell = "1.10"
parking_lot = "0.12"
anyhow = "1.0"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
serde_json = "1.0"