diff --git a/arduino-hal/Cargo.toml b/arduino-hal/Cargo.toml index 1f400c73f3..d14e5e4249 100644 --- a/arduino-hal/Cargo.toml +++ b/arduino-hal/Cargo.toml @@ -62,7 +62,7 @@ path = "../mcu/attiny-hal/" optional = true [dependencies.avr-device] -version = "0.5.4" +version = "0.7" # 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 c5d0ff446f..1188fa65ce 100644 --- a/avr-hal-generic/Cargo.toml +++ b/avr-hal-generic/Cargo.toml @@ -20,7 +20,7 @@ docsrs = ["avr-device/docsrs"] nb = "1.1.0" ufmt = "0.2.0" paste = "1.0.0" -avr-device = "0.5.4" +avr-device = "0.7" embedded-storage = "0.2" embedded-hal = "1.0" embedded-hal-bus = "0.1" diff --git a/examples/arduino-nano/Cargo.toml b/examples/arduino-nano/Cargo.toml index 9c9a98a6be..6a20a58d6f 100644 --- a/examples/arduino-nano/Cargo.toml +++ b/examples/arduino-nano/Cargo.toml @@ -20,7 +20,7 @@ path = "../../arduino-hal/" features = ["arduino-nano"] [dependencies.avr-device] -version = "0.5.1" +version = "0.7" # The latest releases of `proc-macro2` do not support the rust toolchain that # we use. Thus, we must fix this dependency to an older version where our diff --git a/examples/arduino-uno/Cargo.toml b/examples/arduino-uno/Cargo.toml index 85092a492c..4975e26ba0 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.4" +version = "0.7" [dependencies.either] version = "1.6.1" diff --git a/examples/atmega2560/Cargo.toml b/examples/atmega2560/Cargo.toml index 0c60b42a23..96e4dbaa54 100644 --- a/examples/atmega2560/Cargo.toml +++ b/examples/atmega2560/Cargo.toml @@ -10,7 +10,7 @@ panic-halt = "0.2.0" ufmt = "0.2.0" nb = "1.1.0" embedded-hal = "1.0" -avr-device = { version = "0.5.4", features = ["rt"] } +avr-device = { version = "0.7", features = ["rt"] } [dependencies.embedded-hal-v0] version = "0.2.3" diff --git a/examples/nano168/Cargo.toml b/examples/nano168/Cargo.toml index 0caa120d25..ad07be0ac1 100644 --- a/examples/nano168/Cargo.toml +++ b/examples/nano168/Cargo.toml @@ -21,7 +21,7 @@ path = "../../arduino-hal/" features = ["nano168"] [dependencies.avr-device] -version = "0.5.4" +version = "0.7" # The latest releases of `proc-macro2` do not support the rust toolchain that # we use. Thus, we must fix this dependency to an older version where our diff --git a/mcu/atmega-hal/Cargo.toml b/mcu/atmega-hal/Cargo.toml index ebe5a12a4b..9a2113f787 100644 --- a/mcu/atmega-hal/Cargo.toml +++ b/mcu/atmega-hal/Cargo.toml @@ -39,7 +39,7 @@ docsrs = ["atmega328p"] avr-hal-generic = { path = "../../avr-hal-generic/" } [dependencies.avr-device] -version = "0.5.4" +version = "0.7" # 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 4e11377dcb..737224607d 100644 --- a/mcu/attiny-hal/Cargo.toml +++ b/mcu/attiny-hal/Cargo.toml @@ -31,7 +31,7 @@ docsrs = ["attiny85"] avr-hal-generic = { path = "../../avr-hal-generic/" } [dependencies.avr-device] -version = "0.5.4" +version = "0.7" # Because this crate has its own check that at least one device is selected, we # can safely "circumvent" the check in `avr-device`.