-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
32 lines (28 loc) · 1.01 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
[package]
name = "mqttrs"
version = "0.4.1"
authors = ["00imvj00 <[email protected]>",
"Vincent de Phily <[email protected]>",
"Mathias Koch <[email protected]>"]
edition = "2018"
description = "Mqtt protocol encoding and decoding"
readme = "README.md"
homepage = "https://github.com/00imvj00/mqttrs"
repository = "https://github.com/00imvj00/mqttrs"
documentation = "https://docs.rs/mqttrs"
keywords = ["mqtt", "pubsub", "publish-subscribe", "codec"]
categories = ["encoding", "network-programming", "no-std"]
license = "Apache-2.0"
[features]
default = ["std"]
# Implements serde::{Serialize,Deserialize} on mqttrs::Pid.
derive = ["serde", "heapless/serde"]
std = ["bytes/std", "serde/std"]
defmt = ["dep:defmt", "heapless/defmt-03"]
[dependencies]
bytes = { version = "1.0", default-features = false}
serde = { version = "1.0", features = ["derive"], optional = true }
heapless = { version = "0.8" }
defmt = { version = "0.3.10", optional = true }
[dev-dependencies]
proptest = "0.10.0"