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 = "sysexits")]
6    "sysexits",
7    #[cfg(feature = "unstable")]
8    "unstable",
9];