forked from eclipse-paho/paho.mqtt.rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (37 loc) · 1001 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 = "paho-mqtt"
version = "0.9.1"
edition = "2018"
authors = ["Frank Pagliughi <fpagliughi@mindspring.com>"]
homepage = "https://github.com/eclipse/paho.mqtt.rust"
repository = "https://github.com/eclipse/paho.mqtt.rust"
keywords = [ "MQTT", "IoT", "Paho", "messaging" ]
license = "EPL-1.0"
readme = "README.md"
description = """
The Official Eclipse Paho MQTT Rust Client Library.
This is a wrapper around the Paho C library.
"""
[features]
default = ["bundled", "ssl"]
bundled = ["paho-mqtt-sys/bundled"]
build_bindgen = ["paho-mqtt-sys/build_bindgen"]
ssl = ["paho-mqtt-sys/ssl"]
vendored-ssl = ["paho-mqtt-sys/vendored-ssl"]
[dependencies]
paho-mqtt-sys = { version = "0.5", path = "paho-mqtt-sys", default-features=false }
libc = "0.2"
futures = "0.3"
futures-timer = "3.0"
log = "0.4"
thiserror = "1.0"
[dev-dependencies]
env_logger = "0.7"
toml = "0.5"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
lazy_static = "1.4"
futures-util = "0.3"
async-std = "1"
clap = "2.33"