allow filtering reverse dependencies by (major) release #7511
rursprung
started this conversation in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
currently the reverse dependency overview shows all crates depending on the selected crate. while this can be informative it is often also important to know which crates depend on a specific major release (note: for 0.x releases the same would be true for the minor release!).
one concrete example is that it'd be great to easily check which crates already implement
embedded-halin one of thev1.0.0-alpha.*orv1.0.0-rc.*releases (see rust-embedded/embedded-hal#177 (comment)).while the information is shown on the UI there's no option to filter for it.
this should, if possible, be semver based (just like the dependencies): if i check the reverse dependencies for v1.2.3 then i should also get to see crates depending on v1.0.0 (presuming they're not using
=1.0.0,^1.0.0, <1.2.0or similar, of course)Beta Was this translation helpful? Give feedback.
All reactions