Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to avr-device 0.7 #618

Merged
merged 1 commit into from
Jan 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arduino-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion avr-hal-generic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/arduino-nano/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/arduino-uno/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/atmega2560/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/nano168/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mcu/atmega-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion mcu/attiny-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
Loading