An extremely small library that contains the one function that it needs to get the job done.
```rust use simplehomedir::*;
fn main() { let home = home_dir().unwrap(); println!("{:?}", home) } ``` And that's it!
This should work on most operating systems.
The majority of the Windows portion of this has been noted from the windows-sys and directories crates.