From 942682bf9a6cd144d0a11aa04ddae8a2a8b11be2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 3 Sep 2022 15:32:46 +0000 Subject: [PATCH] Bump radio from 0.11.0 to 0.11.1 Bumps [radio](https://github.com/rust-iot/radio-hal) from 0.11.0 to 0.11.1. - [Release notes](https://github.com/rust-iot/radio-hal/releases) - [Commits](https://github.com/rust-iot/radio-hal/compare/v0.11.0...v0.11.1) --- updated-dependencies: - dependency-name: radio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c31b370..cafe66d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -556,9 +556,9 @@ dependencies = [ [[package]] name = "radio" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1337ea1f0afdfd180e4ef937a6ddea19602813b608fb4cb183768e555c402b9d" +checksum = "9b5db8d0fe5e071842a0c435e65c7eb13fbf2c44bd90a3da722f2bf2bcbb2df7" dependencies = [ "byteorder", "chrono", @@ -807,9 +807,9 @@ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" [[package]] name = "structopt" -version = "0.3.23" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf9d950ef167e25e0bdb073cf1d68e9ad2795ac826f2f3f59647817cf23c0bfa" +checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10" dependencies = [ "clap", "lazy_static", @@ -818,9 +818,9 @@ dependencies = [ [[package]] name = "structopt-derive" -version = "0.4.16" +version = "0.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "134d838a2c9943ac3125cf6df165eda53493451b719f3255b2a26b85f772d0ba" +checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" dependencies = [ "heck 0.3.3", "proc-macro-error", diff --git a/Cargo.toml b/Cargo.toml index 6ca92a5..bf0ff47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ util = [ "std", "structopt", "tracing", "tracing-subscriber", "humantime", "crc1 default = [ "std", "util", "serde", "driver-pal/hal-cp2130", "driver-pal/hal-linux", "patch-unknown-state" ] [dependencies] -radio = { version = "0.11.0", default_features = false } +radio = { version = "0.11.1", default_features = false } embedded-hal = "1.0.0-alpha.7" defmt = {version = "0.3.0", optional = true } @@ -46,7 +46,7 @@ crc16 = { version = "0.4.0", optional = true } hex = { version = "0.4.2", optional = true } humantime = { version = "2.0.1", optional = true } -structopt = { version = "0.3.14", optional = true } +structopt = { version = "0.3.26", optional = true } thiserror = { version = "1.0.30", optional = true } [dependencies.failure]