known_errors/
features.rs

1// This is free and unencumbered software released into the public domain.
2
3/// The set of features that are enabled in this build of the crate.
4pub static FEATURES: &[&str] = &[
5    #[cfg(feature = "unstable")]
6    "unstable",
7];