Skip to content

Commit fc6c983

Browse files
committed
[WIP] Make tidy be quiet temporarily
1 parent a4280b0 commit fc6c983

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

compiler/rustc_codegen_cranelift/src/global_asm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
use std::io::Write;
55
use std::path::PathBuf;
66
use std::process::{Command, Stdio};
7-
use std::sync::Arc;
87

98
use rustc_ast::{InlineAsmOptions, InlineAsmTemplatePiece};
9+
use rustc_data_structures::sync::Lrc;
1010
use rustc_hir::{InlineAsmOperand, ItemId};
1111
use rustc_middle::mir::interpret::ErrorHandled;
1212
use rustc_session::config::{OutputFilenames, OutputType};

compiler/rustc_codegen_cranelift/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ use cranelift_codegen::settings::{self, Configurable};
4242
use rustc_codegen_ssa::CodegenResults;
4343
use rustc_codegen_ssa::traits::CodegenBackend;
4444
use rustc_data_structures::profiling::SelfProfilerRef;
45+
use rustc_data_structures::sync::Lrc;
4546
use rustc_errors::ErrorGuaranteed;
4647
use rustc_metadata::EncodedMetadata;
4748
use rustc_middle::dep_graph::{WorkProduct, WorkProductId};

src/tools/tidy/src/deps.rs

+2
Original file line numberDiff line numberDiff 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",

src/tools/tidy/src/extdeps.rs

+1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)