Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/tools/tidy/src/deps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,17 @@ const EXCEPTIONS_RUST_ANALYZER: ExceptionList = &[

const EXCEPTIONS_RUSTC_PERF: ExceptionList = &[
// tidy-alphabetical-start
("aws-lc-rs", "ISC AND (Apache-2.0 OR ISC)"),
(
"aws-lc-sys",
"ISC AND (Apache-2.0 OR ISC) AND Apache-2.0 AND MIT AND BSD-3-Clause AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR ISC OR MIT-0)",
),
("brotli", "BSD-3-Clause AND MIT"),
("fast-srgb8", "MIT OR Apache-2.0 OR CC0-1.0"),
("inferno", "CDDL-1.0"),
("option-ext", "MPL-2.0"),
("terminfo", "WTFPL"),
("wasite", "Apache-2.0 OR BSL-1.0 OR MIT"),
("wezterm-bidi", "MIT AND Unicode-DFS-2016"),
("webpki-root-certs", "CDLA-Permissive-2.0"),
("whoami", "Apache-2.0 OR BSL-1.0 OR MIT"),
// tidy-alphabetical-end
];
Expand Down
2 changes: 1 addition & 1 deletion src/tools/tidy/src/extdeps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::diagnostics::TidyCtx;
const ALLOWED_SOURCES: &[&str] = &[
r#""registry+https://github.com/rust-lang/crates.io-index""#,
// This is `rust_team_data` used by `site` in src/tools/rustc-perf,
r#""git+https://github.com/rust-lang/team#a5260e76d3aa894c64c56e6ddc8545b9a98043ec""#,
r#""git+https://github.com/rust-lang/team#db2c1ed9fbc0216e533db954cd249045c01c7406""#,
];

/// Checks for external package sources. `root` is the path to the directory that contains the
Expand Down
Loading