Hi thanks for the tool! Given the acyclic option, I guess this crate does analyze all dependencies between mods. However, it seems that currently it only outputs a dot graph that shows the ownership between modules, instead of dependency relationship.
In my case, say I have mod A, B, C. I want to check automatically that, the mod A is never used by mod B (but can be used by mod C), such that it satisfies things like layered architecture.
Hi thanks for the tool! Given the
acyclicoption, I guess this crate does analyze all dependencies between mods. However, it seems that currently it only outputs adotgraph that shows the ownership between modules, instead of dependency relationship.In my case, say I have mod A, B, C. I want to check automatically that, the mod A is never used by mod B (but can be used by mod C), such that it satisfies things like layered architecture.