mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00

Revert <https://github.com/rust-lang/rust/pull/138084> to buy time to consider options that avoids breaking downstream usages of cargo on distributed `rustc-src` artifacts, where such cargo invocations fail due to inability to inherit `lints` from workspace root manifest's `workspace.lints` (this is only valid for the source rust-lang/rust workspace, but not really the distributed `rustc-src` artifacts). This breakage was reported in <https://github.com/rust-lang/rust/issues/138304>. This reverts commit48caf81484
, reversing changes made toc6662879b2
.
66 lines
2.2 KiB
TOML
66 lines
2.2 KiB
TOML
[package]
|
|
name = "rustc_codegen_ssa"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
# tidy-alphabetical-start
|
|
ar_archive_writer = "0.4.2"
|
|
arrayvec = { version = "0.7", default-features = false }
|
|
bitflags = "2.4.1"
|
|
bstr = "1.11.3"
|
|
# Pinned so `cargo update` bumps don't cause breakage. Please also update the
|
|
# `cc` in `rustc_llvm` if you update the `cc` here.
|
|
cc = "=1.2.16"
|
|
either = "1.5.0"
|
|
itertools = "0.12"
|
|
pathdiff = "0.2.0"
|
|
regex = "1.4"
|
|
rustc_abi = { path = "../rustc_abi" }
|
|
rustc_arena = { path = "../rustc_arena" }
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
|
rustc_attr_parsing = { path = "../rustc_attr_parsing" }
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
rustc_errors = { path = "../rustc_errors" }
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
|
rustc_fs_util = { path = "../rustc_fs_util" }
|
|
rustc_hashes = { path = "../rustc_hashes" }
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
rustc_hir_pretty = { path = "../rustc_hir_pretty" }
|
|
rustc_incremental = { path = "../rustc_incremental" }
|
|
rustc_index = { path = "../rustc_index" }
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
rustc_metadata = { path = "../rustc_metadata" }
|
|
rustc_middle = { path = "../rustc_middle" }
|
|
rustc_query_system = { path = "../rustc_query_system" }
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
rustc_session = { path = "../rustc_session" }
|
|
rustc_span = { path = "../rustc_span" }
|
|
rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
|
|
rustc_target = { path = "../rustc_target" }
|
|
rustc_trait_selection = { path = "../rustc_trait_selection" }
|
|
rustc_type_ir = { path = "../rustc_type_ir" }
|
|
serde_json = "1.0.59"
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
|
tempfile = "3.2"
|
|
thin-vec = "0.2.12"
|
|
thorin-dwp = "0.8"
|
|
tracing = "0.1"
|
|
wasm-encoder = "0.219"
|
|
# tidy-alphabetical-end
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
# tidy-alphabetical-start
|
|
libc = "0.2.50"
|
|
# tidy-alphabetical-end
|
|
|
|
[dependencies.object]
|
|
version = "0.36.2"
|
|
default-features = false
|
|
features = ["read_core", "elf", "macho", "pe", "xcoff", "unaligned", "archive", "write", "wasm"]
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
version = "0.59.0"
|
|
features = ["Win32_Globalization"]
|