You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would also allow to generate a graph of actual module dependencies without rendering every single item per module, right? For large (binary) crates, it would be very nice if this tool could help identify easy modules to move out into separate crates, but currently due to the size of the output when only showing modules, it's not really feasible.
I was going to suggest that we close #18 in light of #184, but it turns out that PR is only a partial solution.
It catches cases like this:
But it doesn't catch cases like this:
because an edge
b --> a::T
is not the same as an edgeb --> a
.I think the easiest solution would be to add something like
--use-parents
, which adds an edgeb --> a
whenever an edgeb --> a::T
is seen.@regexident I realize this is "option creep" for a tool not originally intended for this purpose, but would you be open to adding such an option?
The text was updated successfully, but these errors were encountered: