# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "meshpulse" version = "0.2.1" autobenches = true description = """ Meshpulse is a Rust library for easy communication between microservices, based on either MQTT, AMQP, gRPC or HTTP. """ homepage = "https://github.com/tluijken/meshpulse" documentation = "https://docs.rs/meshpulse" readme = "README.md" keywords = [ "MQTT", "AMQP", "gRPC", "HTTP", "communication", ] categories = ["communication"] license = "MIT" repository = "https://github.com/tluijken/meshpulse" [dependencies.lazy_static] version = "1.4" [dependencies.meshpulse_derive] version = "0.2.1" features = ["mqtt"] [dependencies.paho-mqtt] version = "0.12.5" optional = true [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.serde_json] version = "1.0" optional = true [dependencies.tokio] version = "1" features = ["full"] [dependencies.uuid] version = "1.8" features = ["v4"] optional = true [features] amqp = [] default = ["mqtt"] grpc = [] mqtt = [ "paho-mqtt", "serde", "serde_json", "meshpulse_derive/mqtt", "uuid", ]