forked from ntex-rs/ntex-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 800 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
[package]
name = "ntex-mqtt"
version = "0.8.4"
authors = ["ntex contributors <[email protected]>"]
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.5.14"
bitflags = "1.3"
derive_more = "0.99"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
pin-project-lite = "0.2"
[dev-dependencies]
env_logger = "0.9"
ntex-tls = "0.1.3"
rustls = "0.20"
rustls-pemfile = "0.2"
openssl = "0.10"
ntex = { version = "0.5", features = ["tokio", "rustls", "openssl"] }