From 8493b5c481522ba33f29b0973abccd9cfd9a0468 Mon Sep 17 00:00:00 2001 From: Rahix Date: Sun, 28 Jan 2024 20:33:03 +0100 Subject: [PATCH] Upgrade to avr-device 0.5.4 --- arduino-hal/Cargo.toml | 2 +- avr-hal-generic/Cargo.toml | 2 +- examples/arduino-uno/Cargo.toml | 2 +- examples/nano168/Cargo.toml | 2 +- mcu/atmega-hal/Cargo.toml | 2 +- mcu/attiny-hal/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/arduino-hal/Cargo.toml b/arduino-hal/Cargo.toml index 04016ed829..4cd6746ca5 100644 --- a/arduino-hal/Cargo.toml +++ b/arduino-hal/Cargo.toml @@ -52,7 +52,7 @@ path = "../mcu/attiny-hal/" optional = true [dependencies.avr-device] -version = "0.5.3" +version = "0.5.4" # Because this crate has its own check that at least one device is selected, we # can safely "circumvent" the check in `avr-device`. diff --git a/avr-hal-generic/Cargo.toml b/avr-hal-generic/Cargo.toml index ceacf1bd6e..b8fc17f419 100644 --- a/avr-hal-generic/Cargo.toml +++ b/avr-hal-generic/Cargo.toml @@ -9,7 +9,7 @@ cfg-if = "0.1.7" nb = "1.1.0" ufmt = "0.2.0" paste = "1.0.0" -avr-device = "0.5.3" +avr-device = "0.5.4" embedded-storage = "0.2" embedded-hal = "1.0" unwrap-infallible = "0.1.5" diff --git a/examples/arduino-uno/Cargo.toml b/examples/arduino-uno/Cargo.toml index b75f01bbde..31956a5b4f 100644 --- a/examples/arduino-uno/Cargo.toml +++ b/examples/arduino-uno/Cargo.toml @@ -23,7 +23,7 @@ path = "../../arduino-hal/" features = ["arduino-uno"] [dependencies.avr-device] -version = "0.5.3" +version = "0.5.4" [dependencies.either] version = "1.6.1" diff --git a/examples/nano168/Cargo.toml b/examples/nano168/Cargo.toml index d0ae258740..e9732ae748 100644 --- a/examples/nano168/Cargo.toml +++ b/examples/nano168/Cargo.toml @@ -21,4 +21,4 @@ path = "../../arduino-hal/" features = ["nano168"] [dependencies.avr-device] -version = "0.5.3" +version = "0.5.4" diff --git a/mcu/atmega-hal/Cargo.toml b/mcu/atmega-hal/Cargo.toml index 9841308047..32aada0c1d 100644 --- a/mcu/atmega-hal/Cargo.toml +++ b/mcu/atmega-hal/Cargo.toml @@ -30,7 +30,7 @@ disable-device-selection-error = [] avr-hal-generic = { path = "../../avr-hal-generic/" } [dependencies.avr-device] -version = "0.5.3" +version = "0.5.4" # Because this crate has its own check that at least one device is selected, we # can safely "circumvent" the check in `avr-device`. diff --git a/mcu/attiny-hal/Cargo.toml b/mcu/attiny-hal/Cargo.toml index c8aaf6cbaf..f7e0b695e9 100644 --- a/mcu/attiny-hal/Cargo.toml +++ b/mcu/attiny-hal/Cargo.toml @@ -22,7 +22,7 @@ disable-device-selection-error = [] avr-hal-generic = { path = "../../avr-hal-generic/" } [dependencies.avr-device] -version = "0.5.3" +version = "0.5.4" # Because this crate has its own check that at least one device is selected, we # can safely "circumvent" the check in `avr-device`.