-
-
Notifications
You must be signed in to change notification settings - Fork 36
^ versions handled incorrectly #39
Comments
Hi @rbtcollins Please do not forget this plugin only fetches versions from crates.io Please use |
I think you've misunderstood the bug report. I agree that
Here is the current behaviours with pest:
This doesn't make sense to me: Only the last one is building with a non-latest version, but two of them show the "Latest" warning to encourage updating, even though thats not needed. From a cargo-semver perspective the first three entries are all identical: they all specify anything >= 2 but less than 3. Why is crates showing these warnings? |
A version in
Cargo.toml
like^2
will match versions >=2 and <3. So it should show with a 👍 when the current version in crates.io is 2.5, but instead I get this:However, cargo build is actually using 2.1.0.
The text was updated successfully, but these errors were encountered: