forked from snipsco/rumqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (40 loc) · 783 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
41
42
43
44
[package]
authors = ["tekjar <[email protected]>"]
description = "A fast, lockfree mqtt client"
keywords = [
"mqtt",
"iot",
"async",
"tokio",
"futures",
]
license = "Unlicense/MIT"
name = "rumqtt"
readme = "README.md"
repository = "https://github.com/AtherEnergy/rumqtt"
version = "0.20.0"
edition = "2018"
resolver="2"
[dependencies]
anyhow = "1.0.86"
chrono = "0.4"
debug_stub_derive = "0.3"
dns-lookup = "0.9"
error-chain = "0.11"
log = "0.4"
mio = "0.6"
mio-more = "0.1"
rustls = "0.23"
rustls-pemfile = "2.1.3"
serde = "1"
serde_derive = "1"
webpki = "0.22"
webpki-roots = "0.26"
[dependencies.mqtt3]
branch = "last_will_payload_is_bin"
git = "https://github.com/snipsco/mqtt3"
[dev-dependencies]
loggerv = "0.7"
[features]
default = []
local-tests = []