summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 4ab6437802ed8956f05de09441cc2a39fcc4038a (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "cloudmqtt"
version = "0.5.0"
edition = "2021"
authors = ["Marcel Müller <neikos@neikos.email>"]
description = "A pure Rust MQTT client and server library"
readme = "README.md"
repository = "https://github.com/TheNeikos/cloudmqtt"
license = "MPL-2.0"
keywords = ["mqtt", "cloud"]
categories = ["embedded"]

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

[workspace]
members = ["mqtt-format", "mqtt-tester"]

[[bin]]
name = "cloudmqtt-client"
required-features = ["bin"]

[[bin]]
name = "cloudmqtt-server"
required-features = ["bin"]

[[bin]]
name = "cloudmqtt-test-client"
required-features = ["bin"]

[features]
bin = ["clap", "tokio/rt-multi-thread", "tokio/macros", "tokio/io-std", "tracing-subscriber"]

[dependencies]
bytes = "1.4.0"
clap = { version = "4.1.8", optional = true, features = ["derive"] }
dashmap = "5.4.0"
futures = "0.3.27"
mqtt-format = { version = "0.5.0", path = "mqtt-format", features = ["yoke"] }
nom = { version = "7.1.3" }
thiserror = "1.0.40"
tokio = { version = "1.26.0", default-features = false, features = [
    "net",
    "time",
    "sync",
    "macros",
] }
arc-swap = "1.6.0"
rpds = "0.13.0"
tokio-util = { version = "0.7.7", features = [
    "futures-io",
    "io",
    "io-util",
    "compat",
] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", optional = true, features = [
    "env-filter",
] }
yoke = "0.7.0"
async-trait = "0.1.67"

[dev-dependencies]
static_assertions = "1.1.0"