asimov_module_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 = "unstable")]
7    "unstable",
8];