-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
37 lines (32 loc) · 1.1 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
33
34
35
36
37
[package]
name = "minimq"
version = "0.9.0"
authors = ["Ryan Summers <[email protected]>", "Max Rottenkolber <[email protected]>"]
edition = "2018"
description = "A minimal MQTT5 client designed for no_std platforms"
homepage = "https://github.com/quartiq/minimq"
repository = "https://github.com/quartiq/minimq"
documentation = "https://docs.rs/minimq"
readme = "README.md"
categories = ["embedded", "no-std", "database", "encoding"]
keywords = ["mqtt", "embedded", "client"]
license = "MIT"
[dependencies]
bit_field = "0.10.0"
num_enum = { version = "0.7", default-features = false }
heapless = { version = "0.7", features = ["serde"] }
log = {version = "0.4", optional = true}
embedded-time = "0.12"
varint-rs = {version = "2.2", default-features = false }
serde = { version = "1", features = ["derive"], default-features = false }
smlang = "0.6.0"
embedded-nal = "0.8"
[features]
default = []
logging = ["log"]
unsecure = []
[dev-dependencies]
log = "0.4"
env_logger = "0.10"
std-embedded-time = "0.1"
std-embedded-nal = { git = "https://gitlab.com/ryan-summers/std-embedded-nal", branch = "feature/0.8" }