rust-lang / cmake-rs

Rust build dependency for running cmake
https://docs.rs/cmake
Apache License 2.0
301 stars 121 forks source link

Please yank the most outdated versions of the crate #167

Open kornelski opened 1 year ago

kornelski commented 1 year ago

I'm trying to get the ecosystem working with --minimal-versions flag, and super-old versions of cmake are among problematic crates.

It would be helpful if you yanked all versions older than 0.1.26, which pull in the dead gcc crate. These versions are over 5 years old and their download numbers are below bot-activity noise floor.

for v in "0.1.0" "0.1.1" "0.1.10" "0.1.11" "0.1.12" "0.1.13" "0.1.14" "0.1.15" "0.1.16" "0.1.17" "0.1.18" "0.1.19" "0.1.2" "0.1.20" "0.1.21" "0.1.22" "0.1.23" "0.1.24" "0.1.25" "0.1.3" "0.1.4" "0.1.5" "0.1.6" "0.1.7" "0.1.8" "0.1.9"; do
    cargo yank --vers "$v";
done