From 21f974c4f5e7c8ad11887a0548ee22f43b11b0e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 Nov 2024 20:02:40 +0000 Subject: [PATCH] Bump defmt from 0.3.9 to 0.3.10 Bumps [defmt](https://github.com/knurling-rs/defmt) from 0.3.9 to 0.3.10. - [Release notes](https://github.com/knurling-rs/defmt/releases) - [Changelog](https://github.com/knurling-rs/defmt/blob/main/CHANGELOG.md) - [Commits](https://github.com/knurling-rs/defmt/compare/defmt-v0.3.9...defmt-v0.3.10) --- updated-dependencies: - dependency-name: defmt dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- examples/analog-v1/Cargo.toml | 2 +- examples/analog-v2/Cargo.toml | 2 +- examples/analog/Cargo.toml | 2 +- examples/display-blocking/Cargo.toml | 2 +- examples/display-nonblocking/Cargo.toml | 2 +- examples/display-rtic/Cargo.toml | 2 +- examples/display-text-rtic/Cargo.toml | 2 +- examples/gpio-direct-blinky/Cargo.toml | 2 +- examples/gpio-hal-blinky/Cargo.toml | 2 +- examples/gpio-hal-ledbutton/Cargo.toml | 2 +- examples/gpio-hal-printbuttons/Cargo.toml | 2 +- examples/magnetometer/Cargo.toml | 2 +- examples/rng-direct/Cargo.toml | 2 +- examples/rng-hal/Cargo.toml | 2 +- examples/servo/Cargo.toml | 2 +- examples/v2-microphone/Cargo.toml | 2 +- examples/v2-speaker/Cargo.toml | 2 +- 18 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1e76f3a..39a23dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -249,9 +249,9 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" [[package]] name = "defmt" -version = "0.3.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9112096fbf91d9458d3dc1bca22e87e2684cad608c032f80135e2471614ceebe" +checksum = "86f6162c53f659f65d00619fe31f14556a6e9f8752ccc4a41bd177ffcf3d6130" dependencies = [ "bitflags 1.3.2", "defmt-macros", @@ -259,9 +259,9 @@ dependencies = [ [[package]] name = "defmt-macros" -version = "0.3.10" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e40098d5ffbf1b3c88dff66c3b168a7dc4f3e8ff8604a00441660040a134e20" +checksum = "9d135dd939bad62d7490b0002602d35b358dce5fd9233a709d3c1ef467d4bde6" dependencies = [ "defmt-parser", "proc-macro-error2", diff --git a/examples/analog-v1/Cargo.toml b/examples/analog-v1/Cargo.toml index f9298e8..f648c51 100644 --- a/examples/analog-v1/Cargo.toml +++ b/examples/analog-v1/Cargo.toml @@ -10,7 +10,7 @@ cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" # NOTE: This currently only works with the microbit v1 due to naming issues! # ADC vs SAADC diff --git a/examples/analog-v2/Cargo.toml b/examples/analog-v2/Cargo.toml index 4452461..16fb9a6 100644 --- a/examples/analog-v2/Cargo.toml +++ b/examples/analog-v2/Cargo.toml @@ -10,7 +10,7 @@ cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" # NOTE: This currently only works with the microbit v2 due to naming issues! # ADC vs SAADC diff --git a/examples/analog/Cargo.toml b/examples/analog/Cargo.toml index 67e1d6f..39f6630 100644 --- a/examples/analog/Cargo.toml +++ b/examples/analog/Cargo.toml @@ -10,7 +10,7 @@ cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" [dependencies.microbit] path = "../../microbit" diff --git a/examples/display-blocking/Cargo.toml b/examples/display-blocking/Cargo.toml index 9e2cd00..2aadd2b 100644 --- a/examples/display-blocking/Cargo.toml +++ b/examples/display-blocking/Cargo.toml @@ -8,7 +8,7 @@ cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" embedded-hal = "1.0.0" [dependencies.microbit] diff --git a/examples/display-nonblocking/Cargo.toml b/examples/display-nonblocking/Cargo.toml index 10a4071..68f881c 100644 --- a/examples/display-nonblocking/Cargo.toml +++ b/examples/display-nonblocking/Cargo.toml @@ -8,7 +8,7 @@ cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" [dependencies.microbit] path = "../../microbit" diff --git a/examples/display-rtic/Cargo.toml b/examples/display-rtic/Cargo.toml index ba458c4..a220d44 100644 --- a/examples/display-rtic/Cargo.toml +++ b/examples/display-rtic/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" cortex-m-rtic = { version = "1.1.4" } [dependencies.microbit] diff --git a/examples/display-text-rtic/Cargo.toml b/examples/display-text-rtic/Cargo.toml index fa55183..3fccc7f 100644 --- a/examples/display-text-rtic/Cargo.toml +++ b/examples/display-text-rtic/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" cortex-m-rtic = { version = "1.1.4" } microbit-text = "1.0.0" diff --git a/examples/gpio-direct-blinky/Cargo.toml b/examples/gpio-direct-blinky/Cargo.toml index 6d587f2..b0148be 100644 --- a/examples/gpio-direct-blinky/Cargo.toml +++ b/examples/gpio-direct-blinky/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.5" panic-halt = "1.0.0" -defmt = "0.3.9" +defmt = "0.3.10" [dependencies.microbit] path = "../../microbit" diff --git a/examples/gpio-hal-blinky/Cargo.toml b/examples/gpio-hal-blinky/Cargo.toml index 922910f..e4abc3e 100644 --- a/examples/gpio-hal-blinky/Cargo.toml +++ b/examples/gpio-hal-blinky/Cargo.toml @@ -8,7 +8,7 @@ embedded-hal = "1.0.0" cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" [dependencies.microbit] path = "../../microbit" diff --git a/examples/gpio-hal-ledbutton/Cargo.toml b/examples/gpio-hal-ledbutton/Cargo.toml index d8e566c..7b9167a 100644 --- a/examples/gpio-hal-ledbutton/Cargo.toml +++ b/examples/gpio-hal-ledbutton/Cargo.toml @@ -8,7 +8,7 @@ cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" embedded-hal = "1.0.0" [dependencies.microbit] diff --git a/examples/gpio-hal-printbuttons/Cargo.toml b/examples/gpio-hal-printbuttons/Cargo.toml index c3e157f..044e108 100644 --- a/examples/gpio-hal-printbuttons/Cargo.toml +++ b/examples/gpio-hal-printbuttons/Cargo.toml @@ -8,7 +8,7 @@ cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" [dependencies.microbit] path = "../../microbit" diff --git a/examples/magnetometer/Cargo.toml b/examples/magnetometer/Cargo.toml index ae303dc..edf105a 100644 --- a/examples/magnetometer/Cargo.toml +++ b/examples/magnetometer/Cargo.toml @@ -9,7 +9,7 @@ cortex-m-rt = "0.7.5" embedded-hal = "1.0.0" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" lsm303agr = "1.0.0" [dependencies.microbit] diff --git a/examples/rng-direct/Cargo.toml b/examples/rng-direct/Cargo.toml index ad4baf7..2c4f83a 100644 --- a/examples/rng-direct/Cargo.toml +++ b/examples/rng-direct/Cargo.toml @@ -8,7 +8,7 @@ cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" [dependencies.microbit] path = "../../microbit" diff --git a/examples/rng-hal/Cargo.toml b/examples/rng-hal/Cargo.toml index b0ca9b3..646e58a 100644 --- a/examples/rng-hal/Cargo.toml +++ b/examples/rng-hal/Cargo.toml @@ -8,7 +8,7 @@ cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" [dependencies.rand] default-features = false diff --git a/examples/servo/Cargo.toml b/examples/servo/Cargo.toml index 71817db..b9cce0e 100644 --- a/examples/servo/Cargo.toml +++ b/examples/servo/Cargo.toml @@ -10,7 +10,7 @@ cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" [dependencies.microbit] path = "../../microbit" diff --git a/examples/v2-microphone/Cargo.toml b/examples/v2-microphone/Cargo.toml index b79cb06..7ce41ff 100644 --- a/examples/v2-microphone/Cargo.toml +++ b/examples/v2-microphone/Cargo.toml @@ -9,7 +9,7 @@ embedded-hal = "1.0.0" cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4.0" -defmt = "0.3.9" +defmt = "0.3.10" [dependencies.microbit-v2] path = "../../microbit-v2" diff --git a/examples/v2-speaker/Cargo.toml b/examples/v2-speaker/Cargo.toml index 8cd0d86..64593cb 100644 --- a/examples/v2-speaker/Cargo.toml +++ b/examples/v2-speaker/Cargo.toml @@ -9,7 +9,7 @@ embedded-hal = "1.0.0" cortex-m-rt = "0.7.5" panic-halt = "1.0.0" defmt-rtt = "0.4" -defmt = "0.3.9" +defmt = "0.3.10" [dependencies.microbit-v2] path = "../../microbit-v2"