From fac03b258b78a62d1ab5a2e905c49448a25c17c6 Mon Sep 17 00:00:00 2001 From: alex179ohm Date: Thu, 21 Feb 2019 14:26:00 +0100 Subject: [PATCH] Fix codec panic and update version --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2362ef2..16a0d30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nsq-client" -version = "0.1.11" +version = "0.1.12" authors = ["Alessandro Cresto Miseroglio "] description = """ Rust client for the NSQ realtime message processing system diff --git a/README.md b/README.md index bcde98b..8a3e03e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ To use nsq-client, add this to your Cargo.toml: ```toml [dependencies] actix = "0.7" -nsq-client = "0.1.11" +nsq-client = "0.1.12" ``` ### Create your first consumer In order to use nsq-client you first need to create a Reader actor which implement Handler for the type of messages you want to receive