From eeee5af2961bf8b58b08aa1cc84a8939ad99c7cb Mon Sep 17 00:00:00 2001 From: Ryan Summers Date: Thu, 6 May 2021 16:32:57 +0200 Subject: [PATCH] Updating dependencies --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- src/net/miniconf_client.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b7bfa73..06309e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -426,7 +426,7 @@ dependencies = [ [[package]] name = "minimq" version = "0.2.0" -source = "git+https://github.com/quartiq/minimq.git?rev=b3f364d#b3f364d55dea35da6572f78ddb91c87bfbb453bf" +source = "git+https://github.com/quartiq/minimq.git?rev=d2ec3e8#d2ec3e8351fa403ea96defd98c0b4410cbaa18a4" dependencies = [ "bit_field", "embedded-nal", @@ -732,7 +732,7 @@ dependencies = [ [[package]] name = "smoltcp-nal" version = "0.1.0" -source = "git+https://github.com/quartiq/smoltcp-nal.git?rev=8468f11#8468f11abacd7aba82454e6904df19c1d1ab91bb" +source = "git+https://github.com/quartiq/smoltcp-nal.git?rev=4a1711c#4a1711c54cdf79f5ee8c1c99a1e8984f5944270c" dependencies = [ "embedded-nal", "heapless 0.6.1", diff --git a/Cargo.toml b/Cargo.toml index eefadff..3d57a47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,11 +62,11 @@ rev = "c6f2b28" [dependencies.smoltcp-nal] git = "https://github.com/quartiq/smoltcp-nal.git" -rev = "8468f11" +rev = "4a1711c" [dependencies.minimq] git = "https://github.com/quartiq/minimq.git" -rev = "b3f364d" +rev = "d2ec3e8" [features] semihosting = ["panic-semihosting", "cortex-m-log/semihosting"] diff --git a/src/net/miniconf_client.rs b/src/net/miniconf_client.rs index 9c6bbf5..b809d73 100644 --- a/src/net/miniconf_client.rs +++ b/src/net/miniconf_client.rs @@ -140,7 +140,7 @@ where // If settings updated, Ok(_) if update => UpdateState::Updated, Ok(_) => UpdateState::NoChange, - Err(minimq::Error::Disconnected) => { + Err(minimq::Error::SessionReset) => { self.subscribed = false; UpdateState::NoChange }