-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fails to find outdated workspace dependencies #360
Comments
dburgener
added a commit
to dburgener/lalrpop
that referenced
this issue
Oct 18, 2023
Changelog here: https://github.com/rust-lang/regex/blob/master/CHANGELOG.md#1100-2023-10-09 The gist is that regex added support for new word-boundary matching characters, which required changes in the regex_syntax and regex_automata APIs. Those changes aren't breaking in our use case. In order to stay on the latest fixes and also unify with regex (which we also depend on directly and itself depends on syntax 0.8 and automata 0.4), bump to the newest semver series. "cargo outdated" doesn't detect these due to this bug: kbknapp/cargo-outdated#360 I just happened to notice them while checking "cargo tree" on another issue. We should try to keep a casual eye on our workspace dependencies going forward.
github-merge-queue bot
pushed a commit
to lalrpop/lalrpop
that referenced
this issue
Oct 20, 2023
Changelog here: https://github.com/rust-lang/regex/blob/master/CHANGELOG.md#1100-2023-10-09 The gist is that regex added support for new word-boundary matching characters, which required changes in the regex_syntax and regex_automata APIs. Those changes aren't breaking in our use case. In order to stay on the latest fixes and also unify with regex (which we also depend on directly and itself depends on syntax 0.8 and automata 0.4), bump to the newest semver series. "cargo outdated" doesn't detect these due to this bug: kbknapp/cargo-outdated#360 I just happened to notice them while checking "cargo tree" on another issue. We should try to keep a casual eye on our workspace dependencies going forward.
I'm seeing the same thing on all of my workspace projects. I have, for example, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The current version of slab is
0.4
.cargo outdated
is mistaken that all dependencies are up to date. If I move slab from a workspace dependency to a traditional dependency, thencargo outdated
does find it as outdated.The text was updated successfully, but these errors were encountered: