reem / rust-typemap

A typesafe store keyed by types and containing different types of values.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yank version with "*" deps

kornelski opened this issue · comments

An old version of typemap has dependencies specified with "*" version requirement (phantom = "*", unsafe-any = "*").

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 this old version of typemap is unusable and may cause problems for Cargo, I suggest yanking it:

cargo yank --vers 0.0.3
commented

Curiously, it appears that all versions of typemap have * deps.