ntex-mqtt 0.10.0

Client and Server framework for MQTT v5 and v3.1.1 protocols
Documentation
[package]
name = "ntex-mqtt"
version = "0.10.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Client and Server framework for MQTT v5 and v3.1.1 protocols"
documentation = "https://docs.rs/ntex-mqtt"
repository = "https://github.com/ntex-rs/ntex-mqtt.git"
categories = ["network-programming"]
keywords = ["MQTT", "IoT", "messaging"]
license = "MIT"
exclude = [".gitignore", ".travis.yml", ".cargo/config"]
edition = "2018"

[dependencies]
ntex = "0.6.1"
bitflags = "1.3"
log = "0.4"
pin-project-lite = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"

[dev-dependencies]
env_logger = "0.10"
ntex-tls = "0.2.1"
rustls = "0.20"
rustls-pemfile = "1.0"
openssl = "0.10"
ntex = { version = "0.6.1", features = ["tokio", "rustls", "openssl"] }
test-case = "2"

[profile.dev]
lto = "off" # cannot build tests with "thin"

[profile.test]
lto = "off" # cannot build tests with "thin"