about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc/src/lib.rs
diff options
context:
space:
mode:
authorDiggory Blake <diggsey@googlemail.com>2025-07-05 15:58:04 +0100
committerDiggory Blake <diggsey@googlemail.com>2025-07-05 15:58:42 +0100
commita839b071f7988e77040474dc870ba16b77666a8f (patch)
tree6900128989e500024045b53f1bca514a8027f1a1 /compiler/rustc_codegen_gcc/src/lib.rs
parente3843659e9f65f589d184d1221ac6149d5fa07b5 (diff)
downloadrust-a839b071f7988e77040474dc870ba16b77666a8f.tar.gz
rust-a839b071f7988e77040474dc870ba16b77666a8f.zip
Use `object` crate from crates.io to fix windows build error
Diffstat (limited to 'compiler/rustc_codegen_gcc/src/lib.rs')
-rw-r--r--compiler/rustc_codegen_gcc/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/src/lib.rs b/compiler/rustc_codegen_gcc/src/lib.rs
index a912678ef2a..56afdd55bf9 100644
--- a/compiler/rustc_codegen_gcc/src/lib.rs
+++ b/compiler/rustc_codegen_gcc/src/lib.rs
@@ -27,7 +27,6 @@
 #![allow(clippy::needless_lifetimes, clippy::uninlined_format_args)]
 
 // Some "regular" crates we want to share with rustc
-extern crate object;
 extern crate smallvec;
 // FIXME(antoyo): clippy bug: remove the #[allow] when it's fixed.
 #[allow(unused_extern_crates)]