We do not detect cycles in graph traversal while reading a crate. This will likely lead into an infinite loop (and stack overflow due to the recursion). We need to detect this.
extend test to contain this case and check out the behavior
fix by ending recursion by filtering out children that are already known
Affects: 2.0.0-rc4
We do not detect cycles in graph traversal while reading a crate. This will likely lead into an infinite loop (and stack overflow due to the recursion). We need to detect this.