From 62781306eab09e4006d4dd8d4faefc5ef471a3fe Mon Sep 17 00:00:00 2001 From: Zalathar Date: Mon, 6 Jan 2025 21:36:38 +1100 Subject: [PATCH] Note that cg_llvm's gimli should match the version used elsewhere --- compiler/rustc_codegen_llvm/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/rustc_codegen_llvm/Cargo.toml b/compiler/rustc_codegen_llvm/Cargo.toml index c44d1a5e5c220..94f21ac5f5742 100644 --- a/compiler/rustc_codegen_llvm/Cargo.toml +++ b/compiler/rustc_codegen_llvm/Cargo.toml @@ -9,6 +9,8 @@ test = false [dependencies] # tidy-alphabetical-start bitflags = "2.4.1" +# To avoid duplicate dependencies, this should match the version of gimli used +# by `rustc_codegen_ssa` via its `thorin-dwp` dependency. gimli = "0.30" itertools = "0.12" libc = "0.2"