Skip to content

Commit 3485d22

Browse files
committed
Add serde_derive to the need-to-be-disambiguated-crates list
1 parent 47abd0a commit 3485d22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/cargo/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ impl BuildInfo {
5252
// `--extern dep=path`.
5353
// See https://github.com/rust-lang/rust-clippy/issues/4015.
5454
pub fn third_party_crates() -> Vec<(&'static str, PathBuf)> {
55-
const THIRD_PARTY_CRATES: [&str; 3] = ["serde", "regex", "clippy_lints"];
55+
const THIRD_PARTY_CRATES: [&str; 4] = ["serde", "serde_derive", "regex", "clippy_lints"];
5656
let cargo = env::var_os("CARGO");
5757
let cargo = cargo.as_deref().unwrap_or_else(|| OsStr::new("cargo"));
5858
let output = Command::new(cargo)

0 commit comments

Comments
 (0)