A if/elif-like macro for Rust #[cfg] statements
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Reynard User a5054c1459
Some checks failed
Release-plz / Release-plz (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Test-1 (push) Has been cancelled
CI / Test-2 (push) Has been cancelled
CI / Test-3 (push) Has been cancelled
CI / Rustfmt (push) Has been cancelled
chore: sync dependencies (monorepo)
2026-04-06 15:20:55 +02:00
.github Bump actions/checkout from 5 to 6 2025-11-26 13:12:57 -05:00
src Support cfg(true) and cfg(false) (#99) 2025-10-15 03:07:32 -05:00
tests Disable the unexpected_cfgs lint when testing 2024-08-06 17:42:55 -05:00
.gitignore Initial commit 2015-07-07 18:07:04 -07:00
Cargo.toml chore: sync dependencies (monorepo) 2026-04-06 15:20:55 +02:00
CHANGELOG.md chore: release v1.0.4 (#95) 2025-10-15 03:11:50 -05:00
LICENSE-APACHE Add missing license files 2017-02-21 06:43:06 -08:00
LICENSE-MIT Add missing license files 2017-02-21 06:43:06 -08:00
README.md cleanup: Remove trailing whitespace 2025-06-09 06:58:55 +00:00

cfg-if

Documentation

A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted.

[dependencies]
cfg-if = "1.0"

Example

cfg_if::cfg_if! {
    if #[cfg(unix)] {
        fn foo() { /* unix specific functionality */ }
    } else if #[cfg(target_pointer_width = "32")] {
        fn foo() { /* non-unix, 32-bit functionality */ }
    } else {
        fn foo() { /* fallback implementation */ }
    }
}

fn main() {
    foo();
}

The cfg_if! block above is expanded to:

#[cfg(unix)]
fn foo() { /* unix specific functionality */ }
#[cfg(all(target_pointer_width = "32", not(unix)))]
fn foo() { /* non-unix, 32-bit functionality */ }
#[cfg(not(any(unix, target_pointer_width = "32")))]
fn foo() { /* fallback implementation */ }

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in cfg-if by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.