forked from ntex-rs/ntex-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (35 loc) · 1.09 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
38
39
[package]
name = "ntex-mqtt"
version = "0.6.22"
authors = ["ntex contributors <team@ntex.rs>"]
description = "MQTT Client/Server framework for v5 and v3.1.1,v3.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 = { git = "https://github.com/rmqtt/ntex.git", branch = "0.3.21" }
#ntex = { path = "../ntex/ntex" }
bitflags = "1.2.1"
derive_more = "0.99"
log = "0.4"
serde = "1.0"
serde_json = "1.0"
pin-project-lite = "0.2.5"
dequemap = "0.1"
ahash = "0.7.2"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
lazy_static = "1.4.0"
[dev-dependencies]
tokio-tungstenite = { version = "0.18" }
env_logger = "0.8"
futures = "0.3"
rustls = "0.19"
tokio-rustls = "0.22"
#openssl = "0.10"
#tokio-openssl = "0.6"
ntex = { git = "https://github.com/rmqtt/ntex.git", branch = "0.3.21", features = ["rustls"] }
#ntex = { path = "../ntex/ntex" }