1//! > Polyfill for `OnceCell` stdlib feature for use with older MSRVs 2 3#![warn(clippy::print_stderr)] 4#![warn(clippy::print_stdout)] 5 6pub mod sync; 7 8#[doc = include_str!("../README.md")] 9#[cfg(doctest)] 10pub struct ReadmeDoctests;