aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/src/lib.rs
diff options
context:
space:
mode:
authorQuentin Smith <[email protected]>2022-08-23 23:01:51 -0400
committerQuentin Smith <[email protected]>2022-08-23 23:01:51 -0400
commit2900ab79e7afa0ca3e0d800f8a91c3253a333db1 (patch)
treea5066235f8b1ac6c2520105db2e5c48630bc006d /embassy-sync/src/lib.rs
parent14eae9ca06f63a69ccc29d5fd9e1dec3848a3e98 (diff)
parent529535194d4b5d58b31fd6a7541176105e3c63f7 (diff)
Merge remote-tracking branch 'origin/master' into nrf-pdm
Diffstat (limited to 'embassy-sync/src/lib.rs')
-rw-r--r--embassy-sync/src/lib.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/embassy-sync/src/lib.rs b/embassy-sync/src/lib.rs
new file mode 100644
index 000000000..25150e8aa
--- /dev/null
+++ b/embassy-sync/src/lib.rs
@@ -0,0 +1,19 @@
1#![cfg_attr(not(any(feature = "std", feature = "wasm")), no_std)]
2#![cfg_attr(feature = "nightly", feature(generic_associated_types, type_alias_impl_trait))]
3#![allow(clippy::new_without_default)]
4#![doc = include_str!("../README.md")]
5#![warn(missing_docs)]
6
7// This mod MUST go first, so that the others see its macros.
8pub(crate) mod fmt;
9
10// internal use
11mod ring_buffer;
12
13pub mod blocking_mutex;
14pub mod channel;
15pub mod mutex;
16pub mod pipe;
17pub mod pubsub;
18pub mod signal;
19pub mod waitqueue;