Replace stb_image with PistonDevelopers/image

Fixes #3368
This commit is contained in:
Matt Brubeck 2015-10-08 15:15:31 -07:00
parent ab42ca4296
commit b649246fe2
9 changed files with 209 additions and 53 deletions

View file

@ -149,7 +149,10 @@ def check_lock(file_name, contents):
contents = contents.splitlines(True)
idx = 1
packages = {}
exceptions = ["glutin", "wayland-kbd"] # package names to be neglected (as named by cargo)
# package names to be neglected (as named by cargo)
# - `png` is used by PistonDevelopers/image-png and servo/rust-png
exceptions = ["glutin", "wayland-kbd", "png"]
while idx < len(contents):
content = contents[idx].strip()