Skip to content

Commit

Permalink
Downgrade to embassy-executor 0.5 to avoid MSRV issues
Browse files Browse the repository at this point in the history
(We can also consider bumping our MSRV, I just didn't want to mix two
different matters in a single merge request.)
  • Loading branch information
jannic committed Sep 14, 2024
1 parent 9377c4a commit 1675e2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rp2040-hal-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ rp2040-hal = {path = "../rp2040-hal", version = "0.10.0", features = ["binary-in
static_cell = "2.1.0"

[target.'cfg( target_arch = "arm" )'.dependencies]
embassy-executor = {version = "0.6", features = ["arch-cortex-m", "executor-thread"]}
embassy-executor = {version = "0.5", features = ["arch-cortex-m", "executor-thread"]}
4 changes: 2 additions & 2 deletions rp235x-hal-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ usbd-serial = "0.2.2"
static_cell = "2.1.0"

[target.'cfg( target_arch = "arm" )'.dependencies]
embassy-executor = {version = "0.6", features = ["arch-cortex-m", "executor-thread"]}
embassy-executor = {version = "0.5", features = ["arch-cortex-m", "executor-thread"]}

[target.'cfg( target_arch = "riscv32" )'.dependencies]
embassy-executor = {version = "0.6", features = ["arch-riscv32", "executor-thread"]}
embassy-executor = {version = "0.5", features = ["arch-riscv32", "executor-thread"]}

0 comments on commit 1675e2c

Please sign in to comment.