1[package]2name = "rustc_codegen_ssa"3version = "0.0.0"4edition = "2024"56[dependencies]7# tidy-alphabetical-start8ar_archive_writer = "0.5"9bitflags = "2.4.1"10bstr = "1.11.3"11find-msvc-tools = "0.1.2"12itertools = "0.12"13pathdiff = "0.2.0"14regex = "1.4"15rustc_abi = { path = "../rustc_abi" }16rustc_arena = { path = "../rustc_arena" }17rustc_ast = { path = "../rustc_ast" }18rustc_attr_parsing = { path = "../rustc_attr_parsing" }19rustc_data_structures = { path = "../rustc_data_structures" }20rustc_errors = { path = "../rustc_errors" }21rustc_fs_util = { path = "../rustc_fs_util" }22rustc_hashes = { path = "../rustc_hashes" }23rustc_hir = { path = "../rustc_hir" }24rustc_incremental = { path = "../rustc_incremental" }25rustc_index = { path = "../rustc_index" }26rustc_lint_defs = { path = "../rustc_lint_defs" }27rustc_macros = { path = "../rustc_macros" }28rustc_metadata = { path = "../rustc_metadata" }29rustc_middle = { path = "../rustc_middle" }30rustc_serialize = { path = "../rustc_serialize" }31rustc_session = { path = "../rustc_session" }32rustc_span = { path = "../rustc_span" }33rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }34rustc_target = { path = "../rustc_target" }35rustc_trait_selection = { path = "../rustc_trait_selection" }36serde_json = "1.0.59"37smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }38tempfile = "3.2"39thorin-dwp = "0.9"40tracing = "0.1"41wasm-encoder = "0.219"42# tidy-alphabetical-end4344[target.'cfg(unix)'.dependencies]45# tidy-alphabetical-start46libc = "0.2.50"47# tidy-alphabetical-end4849[dependencies.object]50version = "0.37.0"51default-features = false52features = ["read_core", "elf", "macho", "pe", "xcoff", "unaligned", "archive", "write", "wasm"]5354[target.'cfg(windows)'.dependencies.windows]55version = "0.61.0"56features = ["Win32_Globalization"]
Findings
✓ No findings reported for this file.