diff options
| author | Dániel Buga <[email protected]> | 2024-12-20 12:45:24 +0100 |
|---|---|---|
| committer | Dániel Buga <[email protected]> | 2024-12-22 21:00:23 +0100 |
| commit | ab8ca3f126447edb3a9eb06aa6fd6cd394219c17 (patch) | |
| tree | 129bff555ec2fee297a932243de03151ec38712c /embassy-time-queue-utils/src/lib.rs | |
| parent | 1c485f18a2ee6147bf4cfd66789dc8e0c6e1466c (diff) | |
Rename ETQD, bump date
Diffstat (limited to 'embassy-time-queue-utils/src/lib.rs')
| -rw-r--r-- | embassy-time-queue-utils/src/lib.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/embassy-time-queue-utils/src/lib.rs b/embassy-time-queue-utils/src/lib.rs new file mode 100644 index 000000000..a6f66913f --- /dev/null +++ b/embassy-time-queue-utils/src/lib.rs | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #![no_std] | ||
| 2 | #![doc = include_str!("../README.md")] | ||
| 3 | #![warn(missing_docs)] | ||
| 4 | |||
| 5 | #[cfg(feature = "_generic-queue")] | ||
| 6 | pub mod queue_generic; | ||
| 7 | #[cfg(not(feature = "_generic-queue"))] | ||
| 8 | pub mod queue_integrated; | ||
| 9 | |||
| 10 | #[cfg(feature = "_generic-queue")] | ||
| 11 | pub use queue_generic::Queue; | ||
| 12 | #[cfg(not(feature = "_generic-queue"))] | ||
| 13 | pub use queue_integrated::Queue; | ||
