mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Check for path dev-dependencies with a version number
This commit is contained in:
parent
9860a39603
commit
203cfff826
1 changed files with 33 additions and 10 deletions
|
@ -101,22 +101,45 @@ fn cargo_files_are_tidy() {
|
||||||
let mut section = None;
|
let mut section = None;
|
||||||
for (line_no, text) in read_file(&cargo).unwrap().lines().enumerate() {
|
for (line_no, text) in read_file(&cargo).unwrap().lines().enumerate() {
|
||||||
let text = text.trim();
|
let text = text.trim();
|
||||||
if text.starts_with("[") {
|
if text.starts_with('[') {
|
||||||
section = Some(text);
|
if !text.ends_with(']') {
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if !section.map(|it| it.starts_with("[dependencies")).unwrap_or(false) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
let text: String = text.split_whitespace().collect();
|
|
||||||
if text.contains("path=") && !text.contains("version") {
|
|
||||||
panic!(
|
panic!(
|
||||||
"\ncargo internal dependencies should have version.\n\
|
"\nplease don't add comments or trailing whitespace in section lines.\n\
|
||||||
{}:{}\n",
|
{}:{}\n",
|
||||||
cargo.display(),
|
cargo.display(),
|
||||||
line_no + 1
|
line_no + 1
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
section = Some(text);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
let text: String = text.split_whitespace().collect();
|
||||||
|
if !text.contains("path=") {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
match section {
|
||||||
|
Some(s) if s.contains("dev-dependencies") => {
|
||||||
|
if text.contains("version") {
|
||||||
|
panic!(
|
||||||
|
"\ncargo internal dev-dependencies should not have a version.\n\
|
||||||
|
{}:{}\n",
|
||||||
|
cargo.display(),
|
||||||
|
line_no + 1
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Some(s) if s.contains("dependencies") => {
|
||||||
|
if !text.contains("version") {
|
||||||
|
panic!(
|
||||||
|
"\ncargo internal dependencies should have a version.\n\
|
||||||
|
{}:{}\n",
|
||||||
|
cargo.display(),
|
||||||
|
line_no + 1
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue