forked from ntex-rs/ntex-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 825 Bytes
/
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
[package]
name = "ntex-mqtt"
version = "0.7.0-b.8"
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 = { version = "0.4.0-b.4", default-features = false }
bitflags = "1.2"
derive_more = "0.99"
log = "0.4"
serde = "1.0"
serde_json = "1.0"
pin-project-lite = "0.2"
[dev-dependencies]
env_logger = "0.8"
futures = "0.3"
rustls = "0.19"
tokio-rustls = "0.22"
openssl = "0.10"
tokio-openssl = "0.6"
ntex = { version = "0.4.0-b.4", features = ["rustls", "openssl"] }