summaryrefslogtreecommitdiff
path: root/vendor/once_cell_polyfill/src/lib.rs
blob: 66b1b62abeb5240c57384353c3570aabf47074e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
//! > Polyfill for `OnceCell` stdlib feature for use with older MSRVs

#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![warn(clippy::print_stderr)]
#![warn(clippy::print_stdout)]

pub mod sync;

#[doc = include_str!("../README.md")]
#[cfg(doctest)]
pub struct ReadmeDoctests;