simple-home-dir

An extremely small library that contains the one function that it needs to get the job done.

How to Use:

```rust use simplehomedir::*;

fn main() { let home = home_dir().unwrap(); println!("{:?}", home) } ``` And that's it!

Compatibility

This should work on most operating systems.

Credit

The majority of the Windows portion of this has been noted from the windows-sys and directories crates.