aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/arch/wasm.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-12-07 00:43:18 +0100
committerDario Nieuwenhuis <[email protected]>2023-12-07 00:48:30 +0100
commitac2aec4e7a8e8a4c17c611810d382892398c9eb7 (patch)
tree6ac62c9f6d41e53d0f7f6d9737b1c0c206e531b3 /embassy-executor/src/arch/wasm.rs
parentad2d9040d9f36d2523a22752e98f24c661643cb7 (diff)
executor: rename macro crate to embassy-executor-macros, bump it.
Diffstat (limited to 'embassy-executor/src/arch/wasm.rs')
-rw-r--r--embassy-executor/src/arch/wasm.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/arch/wasm.rs b/embassy-executor/src/arch/wasm.rs
index 3faa92575..f9d0f935c 100644
--- a/embassy-executor/src/arch/wasm.rs
+++ b/embassy-executor/src/arch/wasm.rs
@@ -8,7 +8,7 @@ mod thread {
8 8
9 use core::marker::PhantomData; 9 use core::marker::PhantomData;
10 10
11 pub use embassy_macros::main_wasm as main; 11 pub use embassy_executor_macros::main_wasm as main;
12 use js_sys::Promise; 12 use js_sys::Promise;
13 use wasm_bindgen::prelude::*; 13 use wasm_bindgen::prelude::*;
14 14