[package] name = "rust-mqtt" version = "0.1.5" authors = ["Ondrej Babec "] edition = "2021" resolver = "2" description = "MQTT client for both embedded and non-embedded devices" readme = "README.md" license-file = "LICENSE" repository = "https://github.com/obabec/rust-mqtt" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] heapless = "0.7.10" rand_core = "0.6.0" defmt = { version = "0.3", optional = true } log = { version = "0.4.14", optional = true } embedded-io-async = "0.5" [dev-dependencies] tokio = { version = "1", features = ["full"] } embedded-io = { version = "0.4.0", features = ["tokio"] } tokio-test = { version = "0.4.2" } env_logger = "0.9.0" futures = { version = "0.3.21" } log = { version = "0.4.14" } serial_test = "0.6.0" [features] default = ["std"] std = ["embedded-io/std", "log"] no_std = ["defmt"] tls = []