diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-08-22 14:12:13 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-08-22 14:12:13 +0000 |
| commit | 381ac97746c318963b42eec6ced6773301c91519 (patch) | |
| tree | b1b3f644b77c6fcf4a0bbe2eabe19caba27c4c08 /embassy-executor/src/lib.rs | |
| parent | 1b9599025868d3a5d0d8e773593b05df8b2fecf2 (diff) | |
| parent | 478f4727846f6a43c28fff3b09cb639c0b800465 (diff) | |
Merge #920
920: Remove Forever, switch to static_cell. r=Dirbaio a=Dirbaio
Co-authored-by: Dario Nieuwenhuis <[email protected]>
Diffstat (limited to 'embassy-executor/src/lib.rs')
| -rw-r--r-- | embassy-executor/src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/embassy-executor/src/lib.rs b/embassy-executor/src/lib.rs index 93f2eaa6d..e4cbd04b9 100644 --- a/embassy-executor/src/lib.rs +++ b/embassy-executor/src/lib.rs | |||
| @@ -67,3 +67,9 @@ pub mod raw; | |||
| 67 | 67 | ||
| 68 | mod spawner; | 68 | mod spawner; |
| 69 | pub use spawner::*; | 69 | pub use spawner::*; |
| 70 | |||
| 71 | /// Do not use. Used for macros and HALs only. Not covered by semver guarantees. | ||
| 72 | #[doc(hidden)] | ||
| 73 | pub mod _export { | ||
| 74 | pub use static_cell::StaticCell; | ||
| 75 | } | ||
