asimov_cli/
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 program.
4#[allow(unused)]
5pub static FEATURES: &[&str] = &[
6    #[cfg(feature = "fetch")]
7    "fetch",
8    #[cfg(feature = "import")]
9    "import",
10    #[cfg(feature = "unstable")]
11    "unstable",
12];