1[package]2name = "rustc_codegen_llvm"3version = "0.0.0"4edition = "2024"56[lib]7test = false89[dependencies]10# tidy-alphabetical-start11bitflags = "2.4.1"12# To avoid duplicate dependencies, this should match the version of gimli used13# by `rustc_codegen_ssa` via its `thorin-dwp` dependency.14gimli = "0.31"15itertools = "0.12"16libc = "0.2"17libloading = { version = "0.9.0" }18measureme = "12.0.1"19object = { version = "0.37.0", default-features = false, features = ["std", "read"] }20rustc-demangle = "0.1.21"21rustc_abi = { path = "../rustc_abi" }22rustc_ast = { path = "../rustc_ast" }23rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }24rustc_data_structures = { path = "../rustc_data_structures" }25rustc_errors = { path = "../rustc_errors" }26rustc_fs_util = { path = "../rustc_fs_util" }27rustc_hashes = { path = "../rustc_hashes" }28rustc_hir = { path = "../rustc_hir" }29rustc_index = { path = "../rustc_index" }30rustc_llvm = { path = "../rustc_llvm" }31rustc_macros = { path = "../rustc_macros" }32rustc_metadata = { path = "../rustc_metadata" }33rustc_middle = { path = "../rustc_middle" }34rustc_sanitizers = { path = "../rustc_sanitizers" }35rustc_session = { path = "../rustc_session" }36rustc_span = { path = "../rustc_span" }37rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }38rustc_target = { path = "../rustc_target" }39smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }40tracing = "0.1"41# tidy-alphabetical-end4243[features]44# tidy-alphabetical-start45check_only = ["rustc_llvm/check_only"]46llvm_enzyme = []47llvm_offload = []48# tidy-alphabetical-end
Findings
✓ No findings reported for this file.