-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (44 loc) · 1.18 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (44 loc) · 1.18 KB
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 = "iotd"
version = "0.1.0"
edition = "2021"
authors = ["LI Leding <lileding@gmail.com>"]
description = "High-performance MQTT server daemon in Rust"
license = "MIT"
repository = "https://github.com/lileding/iotd"
keywords = ["mqtt", "iot", "messaging", "broker", "daemon"]
categories = ["network-programming", "asynchronous"]
[dependencies]
tokio = { version = "1", features = ["full"] }
bytes = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0"
thiserror = "1.0"
uuid = { version = "1.0", features = ["v4"] }
dashmap = "5.0"
async-trait = "0.1"
toml = "0.8"
futures = "0.3"
tokio-util = "0.7.15"
rusqlite = { version = "0.31", features = ["bundled"] }
chrono = { version = "0.4", features = ["serde"] }
tokio-rustls = "0.26"
rustls-pemfile = "2"
[dev-dependencies]
tokio-test = "0.4"
criterion = { version = "0.5", features = ["html_reports", "async_tokio"] }
socket2 = "0.5"
tempfile = "3"
rcgen = "0.13"
[[bench]]
name = "broker_benchmark"
harness = false
[[bench]]
name = "performance_benchmark"
harness = false
[profile.release]
lto = true
codegen-units = 1
panic = "abort"