Tool for helping developers keep their code bases clean and decoupled. It allows visualising a code base complexity using a 3d force-directed graph of files and the dependencies between them.
The Rust language allows to prefix imported modules with r#, so that if the module is named after a reserver keyword, like async, then it's interpreted as a raw string, and therefore a module name instead of the actual async keyword.
The Rust language allows to prefix imported modules with
r#
, so that if the module is named after a reserver keyword, likeasync
, then it's interpreted as a raw string, and therefore a module name instead of the actualasync
keyword.