Skip to content

Commit 784f62c

Browse files
authored
Merge pull request #38 from probe-rs/embassy
Allow using embassy-executor 0.6
2 parents 927bec2 + 7e9dac9 commit 784f62c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ rtt-target = { version = "0.5.0", optional = true }
2020
rtt-log = { version = "0.3.0", optional = true }
2121
defmt = { version = "0.3.8", optional = true }
2222
log = { version = "0.4.20", optional = true }
23-
embassy-executor = { version = "0.5.0", optional = true, default-features = false }
23+
embassy-executor = { version = ">=0.5.0, <0.7.0", optional = true, default-features = false }
2424

2525

2626
[features]

src/export.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub fn ensure_linker_file_was_added_to_rustflags() -> ! {
1818
#[cfg(feature = "embassy")]
1919
pub use embassy_executor::task;
2020
#[cfg(all(feature = "embassy", not(feature = "external-executor")))]
21-
pub use embassy_executor::Executor; // Please activate the `executor-thread` or `executor-interrupt` feature on the embassy-executor crate (v0.5.x)!
21+
pub use embassy_executor::Executor; // Please activate the `executor-thread` or `executor-interrupt` feature on the embassy-executor crate (v0.5.x/v0.6.x)!
2222

2323
const VERSION: u32 = 1; //Format version of our protocol between probe-rs and target running embedded-test
2424

0 commit comments

Comments
 (0)