You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some old versions of gl_generator have dependencies specified with "*" version requirement (rust-xml = "*", xml-rs = "*", khronos_api = "*", gl_common = "*", etc.).
Crates with such vague dependency versions became unusable, because * allows picking too-new semver-incompatible dependencies.
It also breaks Cargo's minimal-versions feature, because * requirement allows picking very very old dependencies
that aren't compatible with Rust 1.0.
Because these old versions of gl_generator are unusable and cause problems for Cargo, I suggest yanking them:
In that case I'm guessing the entire gl_generator ^0.0.1 series should be yanked up to and including gl_generator 0.0.28, seeing as they also depend on * versions of xml-rs and libc?
Some old versions of
gl_generator
have dependencies specified with"*"
version requirement (rust-xml = "*", xml-rs = "*", khronos_api = "*", gl_common = "*"
, etc.).Crates with such vague dependency versions became unusable, because
*
allows picking too-new semver-incompatible dependencies.It also breaks Cargo's
minimal-versions
feature, because*
requirement allows picking very very old dependenciesthat aren't compatible with Rust 1.0.
Because these old versions of
gl_generator
are unusable and cause problems for Cargo, I suggest yanking them:The text was updated successfully, but these errors were encountered: