summaryrefslogtreecommitdiffstats
path: root/mqtt-format/Cargo.toml
blob: ce417ce09d9bead45e415312ec3bd773afa64e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[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

[dependencies]
futures = "0.3.25"
nom = "7.1.1"
nom-supreme = "0.8.0"
thiserror = "1.0.37"
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"] }