]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_abi/Cargo.toml
Rollup merge of #105625 - matthiaskrgr:clippy_dec12, r=compiler-errors
[rust.git] / compiler / rustc_abi / Cargo.toml
1 [package]
2 name = "rustc_abi"
3 version = "0.0.0"
4 edition = "2021"
5
6 [dependencies]
7 bitflags = "1.2.1"
8 tracing = "0.1"
9 rand = { version = "0.8.4", default-features = false, optional = true }
10 rand_xoshiro = { version = "0.6.0", optional = true }
11 rustc_data_structures = { path = "../rustc_data_structures", optional = true  }
12 rustc_index = { path = "../rustc_index", default-features = false }
13 rustc_macros = { path = "../rustc_macros", optional = true }
14 rustc_serialize = { path = "../rustc_serialize", optional = true  }
15
16 [features]
17 default = ["nightly", "randomize"]
18 randomize = ["rand", "rand_xoshiro"]
19 nightly = [
20     "rustc_data_structures",
21     "rustc_index/nightly",
22     "rustc_macros",
23     "rustc_serialize",
24 ]