Skip to content

Commit b38e38a

Browse files
committed
Minor tweaks for packaging
1 parent 6a19521 commit b38e38a

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

Cargo.toml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
[package]
2-
name = "mqtt-redis"
3-
version = "0.2.0"
4-
authors = ["fmp <[email protected]>"]
2+
name = "paho-mqtt-redis"
3+
version = "0.2.1"
4+
authors = ["Frank Pagliughi <[email protected]>"]
5+
homepage = "https://github.com/fpagliughi/mqtt.rust.redis"
6+
repository = "https://github.com/fpagliughi/mqtt.rust.redis"
7+
keywords = [ "MQTT", "IoT", "Paho", "persistence" ]
8+
license = "BSD-3-Clause"
9+
description = """
10+
A library for providing persistence to a Paho MQTT Rust client using
11+
Redis as the backing store.
12+
"""
513

614
[dependencies]
7-
#paho-mqtt = { path = "/home/fmp/mqtt/paho-rust" }
8-
paho-mqtt = { git = "https://github.com/eclipse/paho.mqtt.rust" }
15+
#paho-mqtt = { git = "https://github.com/eclipse/paho.mqtt.rust" }
16+
paho-mqtt = "0.4"
917
redis = "0.8.0"
1018
log = "0.3"
1119
env_logger = "0.3"

examples/redis_persist_pub.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ extern crate log;
4343
extern crate env_logger;
4444

4545
extern crate paho_mqtt as mqtt;
46-
extern crate mqtt_redis;
46+
extern crate paho_mqtt_redis;
4747

4848
use std::process;
49-
use mqtt_redis::RedisPersistence;
49+
use paho_mqtt_redis::RedisPersistence;
5050

5151
// Use non-zero QoS to exercise message persistence
5252
const QOS: i32 = 1;

0 commit comments

Comments
 (0)