shepmaster / twox-hash

A Rust implementation of the XXHash algorithm.
MIT License
361 stars 41 forks source link

Use 1.0 for cfg-if #91

Closed Jake-Shadle closed 4 months ago

Jake-Shadle commented 2 years ago

cfg-if 1.0 is almost 2 years old at this point so I don't feel there is a reason to support pre-1.0 versions any longer. This change is meant to workaround a cargo bug where cargo will non-deterministically change the version back and forth between 0.1 and 1.0 if there is at least one more dependency on the 0.1 version, even for lockfile updates that don't directly touch cfg-if. Obviously this isn't critical, just a papercut.

Resolves: #85