1[package]
2name = "cfg-if"
3version = "1.0.4"
4authors = ["Alex Crichton <alex@alexcrichton.com>"]
5license = "MIT OR Apache-2.0"
6readme = "README.md"
7repository = "https://github.com/rust-lang/cfg-if"
8description = """
9A macro to ergonomically define an item depending on a large number of #[cfg]
10parameters. Structured like an if-else chain, the first matching branch is the
11item that gets emitted.
12"""
13edition = "2018"
14rust-version = "1.32"
15
16[dependencies]
17core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
18
19[features]
20rustc-dep-of-std = ["core"]
21