summaryrefslogtreecommitdiffstats
path: root/mqtt-format/Cargo.toml
blob: 1ccc5803a49a2efcbdda785460b42093ed10687e (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
[package]
name = "mqtt-format"
version = "0.2.0"
edition = "2021"
description = "A pure Rust MQTT packet parser and serializer"
readme = "README.md"
repository = "https://github.com/TheNeikos/cloudmqtt"
license = "MPL-2.0"
keywords = ["mqtt", "cloud"]
categories = ["embedded", "parsing"]

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

[features]
yoke = ["dep:yoke"]

[dependencies]
futures = "0.3.25"
nom = "7.1.2"
nom-supreme = "0.8.0"
thiserror = "1.0.38"
yoke = { version = "0.6.1", features = ["derive"], optional = true }

[dev-dependencies]
pretty_assertions = "1.3.0"
tokio = { version = "1.23.0", features = ["test-util", "macros"] }