diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2023-01-29 20:16:23 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2023-03-01 00:33:38 +0100 |
| commit | e65e532c2a342f77080ac6fc8e5be11aa7d82575 (patch) | |
| tree | 5a1f21ad66e277bd13e75c8f29bbd89ba4e10a46 /rtic-common/src/lib.rs | |
| parent | 58692a35e87ddc8b8faca5bb262070d343ceb869 (diff) | |
Move common data structures to `rtic-common`
Diffstat (limited to 'rtic-common/src/lib.rs')
| -rw-r--r-- | rtic-common/src/lib.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/rtic-common/src/lib.rs b/rtic-common/src/lib.rs new file mode 100644 index 0000000..3c75856 --- /dev/null +++ b/rtic-common/src/lib.rs @@ -0,0 +1,8 @@ +//! Crate + +#![no_std] +#![deny(missing_docs)] +//deny_warnings_placeholder_for_ci + +pub mod wait_queue; +pub mod waker_registration; |
