paho-mqtt-sys 0.5.0

Rust wrapper for the Paho MQTT C Client Library. This is part of the official Eclipse Paho Rust Client Library.
Documentation
[package]
name = "paho-mqtt-sys"
version = "0.5.0"
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"
package = "build.rs"
description = """
Rust wrapper for the Paho MQTT C Client Library.
This is part of the official Eclipse Paho Rust Client Library.
"""

# The build features are:
#   "bundled" - Use/build the bundled Paho C library.
#   "build_bindgen" - Use 'bindgen' to regenerate the bindings to the C library.
#   "ssl" - Enable SSL features and link to the Paho C library that uses SSL.
#   "vendored-ssl" - Compile and statically link to a copy of OpenSSL.

[features]
default = ["bundled", "ssl"]
bundled = ["cmake"]
build_bindgen = ["bindgen"]
ssl = ["openssl-sys"]
vendored-ssl = ["bundled", "ssl", "openssl-sys/vendored"]

[dependencies]
openssl-sys = { version = "0.9", optional = true }

[build-dependencies]
bindgen = { version = "0.52", optional = true }
cmake = { version = "0.1", optional = true }