forked from AtherEnergy/rumqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (43 loc) · 1.05 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
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "rumqtt"
description = "Mqtt client for your IOT needs"
version = "0.31.0"
authors = ["raviteja <[email protected]"]
documentation = "https://docs.rs/rumqtt"
repository = "https://github.com/AtherEnergy/rumqtt"
edition = "2018"
license = "Unlicense"
[dependencies]
tokio = { version = "0.1.21", features = [ "codec", "io", "rt-full", "tcp", "timer" ], default-features = false }
bytes = "0.4"
futures = "0.1.28"
crossbeam-channel = "0.5.6"
log = "0.4"
failure = "0.1"
derive_more = "0.13"
base64 = "0.10"
uuid = {version = "0.7", features = ["serde", "v4"]}
mqtt311 = "0.2"
tokio-rustls = ">=0.8, <=0.9"
webpki = ">=0.8, <=0.19"
[dependencies.jsonwebtoken]
version = ">=5.0.1, <=6.0"
optional = true
[dependencies.chrono]
version = "0.4"
optional = true
[dependencies.serde]
version = "1"
optional = true
[dependencies.serde_derive]
version = "1"
optional = true
[dev-dependencies]
envy = "0.3"
serde = "1"
serde_derive = "1"
pretty_env_logger = "0.3"
[features]
default = ["jwt"]
acknotify = []
jwt = ["jsonwebtoken", "chrono", "serde", "serde_derive"]