f757f96296
- `cc` 1.2.4 contains a fix to address [rustc uses wrong build tools
when compiling from MSVC
#133794](https://github.com/rust-lang/rust/issues/133794). See
<https://github.com/rust-lang/cc-rs/releases/tag/cc-v1.2.4>.
- `cc` 1.2.5 contains a fix to also check linking when testing if
certain compiler flags are supported, which fixed an issue that was
causing previous compiler `cc` bumps to fail. See
<https://github.com/rust-lang/cc-rs/releases/tag/cc-v1.2.5>.
Co-authored-by: David Lönnhager <david.l@mullvad.net>
(cherry picked from commit 3775d220af
)
62 lines
2 KiB
TOML
62 lines
2 KiB
TOML
[package]
|
|
name = "rustc_codegen_ssa"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# tidy-alphabetical-start
|
|
ar_archive_writer = "0.4.2"
|
|
arrayvec = { version = "0.7", default-features = false }
|
|
bitflags = "2.4.1"
|
|
# 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.5"
|
|
either = "1.5.0"
|
|
itertools = "0.12"
|
|
jobserver = "0.1.28"
|
|
pathdiff = "0.2.0"
|
|
regex = "1.4"
|
|
rustc_abi = { path = "../rustc_abi" }
|
|
rustc_arena = { path = "../rustc_arena" }
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
rustc_attr = { path = "../rustc_attr" }
|
|
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_hir = { path = "../rustc_hir" }
|
|
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.216.0"
|
|
# 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.57.0"
|
|
features = ["Win32_Globalization"]
|