An extremely small library purposed to retrieve the user's home directory.
```rust use simplehomedir::*;
fn main() { let path = home_dir().unwrap(); println!("{}", path.display()) } ``` And that's it!
This works on most operating systems.
The majority of the Windows portion of this has been noted from the windows-sys and directories crates.