-
Notifications
You must be signed in to change notification settings - Fork 68
/
Cargo.toml
40 lines (37 loc) · 937 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
32
33
34
35
36
37
38
39
40
[package]
name = "ntex-mqtt"
version = "4.4.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 OR Apache-2.0"
edition = "2021"
rust-version = "1.75"
[package.metadata.docs.rs]
features = ["ntex/tokio"]
[dependencies]
ntex-io = "2"
ntex-net = "2"
ntex-util = "2.5"
ntex-service = "3.3.3"
ntex-bytes = "0.1"
ntex-codec = "0.6"
ntex-router = "0.5"
ntex-rt = "0.4"
bitflags = "2"
log = "0.4"
pin-project-lite = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
[dev-dependencies]
rand = "0.8"
env_logger = "0.11"
ntex-tls = "2"
ntex-macros = "0.1"
openssl = "0.10"
test-case = "3.2"
ntex = { version = "2", features = ["openssl"] }