I'm not embarrassed to say that I still sometimes confuse `crate::` vs `super::` in #rust. Even though `super` is kinda obviously `..` and crate is kinda obviously `~`.
But anyway, here's an example I'll put into my #howto #cheatsheet cabinet:
```
// use crate::conf::point_config::PointConfig;
use super::point_config::PointConfig;
```