Revamped syntax and macros to easily manage all #[cfg] parameters in one package. See features to get the full list of features like aliases, attributes, automatic dependency tag documentation and more.
Transform this : ```
pub mod desktop_mod;
pub use desktop_mod::Struct as Struct;
pub mod mobile_mod;
pub use mobile_mod::Struct1 as Struct1;
pub use mobile_mod::Struct2 as Struct2;
pub fn mobileonlyfn() {} ```
Into this :
target_cfg!{
desktop => {
pub mod desktop_mod;
pub use desktop_mod::Struct as Struct;
},
mobile => {
pub mod mobile_mod;
pub use mobile_mod::Struct1 as Struct1;
pub use mobile_mod::Struct2 as Struct2;
pub fn mobile_only_fn() {}
}
}
See examples for more use cases.
Execute this command in your Rust project folder.
cargo add cfg_boost
cfg_boost has no dependencies and only use stable rust library.
See cfg_boost wiki, it contains a LOT of information.
Sponsor me via GitHub Sponsors and get your sponsor royalty tier.