Skip to content

Commit 3c08979

Browse files
tones111Rahix
authored andcommitted
update to avr-device 0.7
1 parent b417d5c commit 3c08979

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

arduino-hal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ path = "../mcu/attiny-hal/"
6262
optional = true
6363

6464
[dependencies.avr-device]
65-
version = "0.5.4"
65+
version = "0.7"
6666

6767
# Because this crate has its own check that at least one device is selected, we
6868
# can safely "circumvent" the check in `avr-device`.

avr-hal-generic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ docsrs = ["avr-device/docsrs"]
2020
nb = "1.1.0"
2121
ufmt = "0.2.0"
2222
paste = "1.0.0"
23-
avr-device = "0.5.4"
23+
avr-device = "0.7"
2424
embedded-storage = "0.2"
2525
embedded-hal = "1.0"
2626
embedded-hal-bus = "0.1"

examples/arduino-nano/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ path = "../../arduino-hal/"
2020
features = ["arduino-nano"]
2121

2222
[dependencies.avr-device]
23-
version = "0.5.1"
23+
version = "0.7"
2424

2525
# The latest releases of `proc-macro2` do not support the rust toolchain that
2626
# we use. Thus, we must fix this dependency to an older version where our

examples/arduino-uno/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ path = "../../arduino-hal/"
2323
features = ["arduino-uno"]
2424

2525
[dependencies.avr-device]
26-
version = "0.5.4"
26+
version = "0.7"
2727

2828
[dependencies.either]
2929
version = "1.6.1"

examples/atmega2560/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ panic-halt = "0.2.0"
1010
ufmt = "0.2.0"
1111
nb = "1.1.0"
1212
embedded-hal = "1.0"
13-
avr-device = { version = "0.5.4", features = ["rt"] }
13+
avr-device = { version = "0.7", features = ["rt"] }
1414

1515
[dependencies.embedded-hal-v0]
1616
version = "0.2.3"

examples/nano168/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ path = "../../arduino-hal/"
2121
features = ["nano168"]
2222

2323
[dependencies.avr-device]
24-
version = "0.5.4"
24+
version = "0.7"
2525

2626
# The latest releases of `proc-macro2` do not support the rust toolchain that
2727
# we use. Thus, we must fix this dependency to an older version where our

mcu/atmega-hal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ docsrs = ["atmega328p"]
3939
avr-hal-generic = { path = "../../avr-hal-generic/" }
4040

4141
[dependencies.avr-device]
42-
version = "0.5.4"
42+
version = "0.7"
4343

4444
# Because this crate has its own check that at least one device is selected, we
4545
# can safely "circumvent" the check in `avr-device`.

mcu/attiny-hal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ docsrs = ["attiny85"]
3131
avr-hal-generic = { path = "../../avr-hal-generic/" }
3232

3333
[dependencies.avr-device]
34-
version = "0.5.4"
34+
version = "0.7"
3535

3636
# Because this crate has its own check that at least one device is selected, we
3737
# can safely "circumvent" the check in `avr-device`.

0 commit comments

Comments
 (0)