File tree Expand file tree Collapse file tree 4 files changed +5
-1
lines changed
compiler/rustc_codegen_cranelift/src Expand file tree Collapse file tree 4 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 44use std:: io:: Write ;
55use std:: path:: PathBuf ;
66use std:: process:: { Command , Stdio } ;
7- use std:: sync:: Arc ;
87
98use rustc_ast:: { InlineAsmOptions , InlineAsmTemplatePiece } ;
9+ use rustc_data_structures:: sync:: Lrc ;
1010use rustc_hir:: { InlineAsmOperand , ItemId } ;
1111use rustc_middle:: mir:: interpret:: ErrorHandled ;
1212use rustc_session:: config:: { OutputFilenames , OutputType } ;
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ use cranelift_codegen::settings::{self, Configurable};
4242use rustc_codegen_ssa:: CodegenResults ;
4343use rustc_codegen_ssa:: traits:: CodegenBackend ;
4444use rustc_data_structures:: profiling:: SelfProfilerRef ;
45+ use rustc_data_structures:: sync:: Lrc ;
4546use rustc_errors:: ErrorGuaranteed ;
4647use rustc_metadata:: EncodedMetadata ;
4748use rustc_middle:: dep_graph:: { WorkProduct , WorkProductId } ;
Original file line number Diff line number Diff line change @@ -417,6 +417,7 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
417417 "tracing-log" ,
418418 "tracing-subscriber" ,
419419 "tracing-tree" ,
420+ "triomphe" ,
420421 "twox-hash" ,
421422 "type-map" ,
422423 "typenum" ,
@@ -432,6 +433,7 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
432433 "unicode-security" ,
433434 "unicode-width" ,
434435 "unicode-xid" ,
436+ "unsize" ,
435437 "valuable" ,
436438 "version_check" ,
437439 "wasi" ,
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const ALLOWED_SOURCES: &[&str] = &[
88 r#""registry+https://github.com/rust-lang/crates.io-index""# ,
99 // This is `rust_team_data` used by `site` in src/tools/rustc-perf,
1010 r#""git+https://github.com/rust-lang/team#a5260e76d3aa894c64c56e6ddc8545b9a98043ec""# ,
11+ r#""git+https://github.com/GnomedDev/triomphe?branch=dropck-eyepatch#a9614f96c0eb04818cea5f98416b05ca34d9e383""# ,
1112] ;
1213
1314/// Checks for external package sources. `root` is the path to the directory that contains the
You can’t perform that action at this time.
0 commit comments