Move to Cargo workspaces

This commit is contained in:
Anthony Ramine 2016-11-27 19:10:09 +01:00
parent 7d69f53794
commit dfb35db6d3
9 changed files with 130 additions and 3812 deletions

View file

@ -359,6 +359,8 @@ def check_toml(file_name, lines):
raise StopIteration
ok_licensed = False
for idx, line in enumerate(lines):
if idx == 0 and "[workspace]" in line:
raise StopIteration
if line.find("*") != -1:
yield (idx + 1, "found asterisk instead of minimum version number")
for license_line in licenses_toml: