Skip to content

Commit

Permalink
9 Encoders for MQTT
Browse files Browse the repository at this point in the history
Signed-off-by: Subhobrata Dey <[email protected]>
  • Loading branch information
sbcd90 committed Nov 30, 2020
1 parent f5302ed commit a3ad7a9
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ members = [
"cloudevents-sdk-reqwest",
"cloudevents-sdk-rdkafka",
"cloudevents-sdk-warp",
"cloudevents-sdk-mqtt"
"cloudevents-sdk-paho-mqtt"
]
exclude = [
"example-projects/actix-web-example",
"example-projects/reqwest-wasm-example",
"example-projects/rdkafka-example",
"example-projects/warp-example",
"example-projects/mqtt-example"
"example-projects/paho-mqtt-example"
]
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "cloudevents-sdk-mqtt"
name = "cloudevents-sdk-paho-mqtt"
version = "0.3.0"
authors = ["Francesco Guardiani <[email protected]>"]
license-file = "../LICENSE"
Expand All @@ -11,7 +11,7 @@ description = "CloudEvents official Rust SDK - Mqtt integration"
[dependencies]
cloudevents-sdk = { version = "0.3.0", path = ".." }
lazy_static = "1.4.0"
paho-mqtt = { git = "https://github.com/eclipse/paho.mqtt.rust.git" }
paho-mqtt = "0.8"
chrono = { version = "^0.4", features = ["serde"] }

[dev-dependencies]
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "mqtt-example"
name = "paho-mqtt-example"
version = "0.2.0"
authors = ["Subhobrata Dey <[email protected]>"]
edition = "2018"
Expand All @@ -11,7 +11,7 @@ async-trait = "^0.1.33"
cloudevents-sdk = { path = "../sdk-rust" }
cloudevents-sdk-mqtt = { path = "../sdk-rust/cloudevents-sdk-mqtt"}
env_logger = "0.7.1"
paho-mqtt = { path = "../paho.mqtt.rust" }
paho-mqtt = "0.8"
serde_json = "^1.0"
futures = "^0.3"
tokio = { version = "^0.2", features = ["full"] }
Expand Down
File renamed without changes.

0 comments on commit a3ad7a9

Please sign in to comment.