Skip to content

Commit e5c8f37

Browse files
committed
Upgrade to avr-device 0.8.1
This is mainly motivated by the breaking changes in avr-libc which we have to adjust for [1]. [1]: Rahix/avr-device#239
1 parent ff4909c commit e5c8f37

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
@@ -57,7 +57,7 @@ path = "../mcu/attiny-hal/"
5757
optional = true
5858

5959
[dependencies.avr-device]
60-
version = "0.8"
60+
version = "0.8.1"
6161

6262
# Because this crate has its own check that at least one device is selected, we
6363
# 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.8"
23+
avr-device = "0.8.1"
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,4 +20,4 @@ path = "../../arduino-hal/"
2020
features = ["arduino-nano"]
2121

2222
[dependencies.avr-device]
23-
version = "0.8"
23+
version = "0.8.1"

examples/arduino-uno/Cargo.toml

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

2121
[dependencies.avr-device]
22-
version = "0.8"
22+
version = "0.8.1"
2323

2424
[dependencies.either]
2525
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 = "1.0.0"
1010
ufmt = "0.2.0"
1111
nb = "1.1.0"
1212
embedded-hal = "1.0"
13-
avr-device = { version = "0.8", features = ["rt"] }
13+
avr-device = { version = "0.8.1", 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
@@ -17,4 +17,4 @@ path = "../../arduino-hal/"
1717
features = ["nano168"]
1818

1919
[dependencies.avr-device]
20-
version = "0.8"
20+
version = "0.8.1"

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.8"
42+
version = "0.8.1"
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
@@ -29,7 +29,7 @@ docsrs = ["attiny85"]
2929
avr-hal-generic = { path = "../../avr-hal-generic/" }
3030

3131
[dependencies.avr-device]
32-
version = "0.8"
32+
version = "0.8.1"
3333

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

0 commit comments

Comments
 (0)