forked from stevedonovan/mosquitto-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 813 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 813 Bytes
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
[package]
name = "mosquitto-client-wrapper"
version = "0.3.1"
authors = [
"Steve Donovan <steve.j.donovan@google.com>",
"Fabrizio Lazzaretti <fabrizio@lazzaretti.me>"
]
description = """
Rust interface to the Mosquitto MQTT broker client.
This is a fork of https://github.com/jsloth/mosquitto-client.
"""
documentation = "https://docs.rs/mosquitto-client-wrapper"
repository = "https://github.com/ce-rust/mosquitto-client-wrapper.git"
readme = "readme.md"
license = "MIT"
keywords = ["MQTT", "mosquitto", "client", "pubsub"]
[features]
default = ["bundled"]
bundled = ["build_bindgen", "cmake", "anyhow"]
build_bindgen = ["bindgen"]
[build-dependencies]
cmake = { version = "0.1", optional = true }
bindgen = { version = "0.50", optional = true }
anyhow = { version = "1.0", optional = true }