gabotechs / dep-tree

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.
https://github.com/gabotechs/dep-tree
MIT License
1.53k stars 38 forks source link

r# in Rust #56

Closed gabotechs closed 10 months ago

gabotechs commented 10 months ago

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.