1#![warn(clippy::pedantic)]
2#![warn(missing_docs)]
3#![warn(unreachable_pub)]
4#![cfg_attr(feature = "_doc", doc = include_str!("../README.md"))]
5
6#[cfg(all(
7 feature = "local_signals_runtime",
8 feature = "forbid_local_signals_runtime"
9))]
10compile_error!("A dependent enabled the `local_signals_runtime` feature, but another forbid this with the `forbid_local_signals_runtime` feature. Please do not enable `local_signals_runtime` in libraries.");
11
12pub mod raw;
13pub mod runtime;
14pub mod slot;