compiler/rustc_abi/Cargo.toml TOML 38 lines View on github.com → Search inside
1[package]2name = "rustc_abi"3version = "0.0.0"4edition = "2024"56[dependencies]7# tidy-alphabetical-start8bitflags = "2.4.1"9rand = { version = "0.9.0", default-features = false, optional = true }10rand_xoshiro = { version = "0.7.0", optional = true }11rustc_data_structures = { path = "../rustc_data_structures", optional = true }12rustc_error_messages = { path = "../rustc_error_messages", optional = true }13rustc_errors = { path = "../rustc_errors", optional = true }14rustc_hashes = { path = "../rustc_hashes" }15rustc_index = { path = "../rustc_index", default-features = false }16rustc_macros = { path = "../rustc_macros", optional = true }17rustc_serialize = { path = "../rustc_serialize", optional = true }18rustc_span = { path = "../rustc_span", optional = true }19tracing = "0.1"20# tidy-alphabetical-end2122[features]23# tidy-alphabetical-start24default = ["nightly", "randomize"]25# rust-analyzer depends on this crate and we therefore require it to build on a stable toolchain26# without depending on the rustc_* crates in the following list.27nightly = [28    "dep:rustc_data_structures",29    "dep:rustc_error_messages",30    "dep:rustc_errors",31    "dep:rustc_macros",32    "dep:rustc_serialize",33    "dep:rustc_span",34    "rustc_index/nightly",35]36randomize = ["dep:rand", "dep:rand_xoshiro", "nightly"]37# tidy-alphabetical-end

Findings

✓ No findings reported for this file.

Get this view in your editor

Same data, no extra tab — call code_get_file + code_get_findings over MCP from Claude/Cursor/Copilot.