simple-home-dir 0.1.2

A simple and miniscule library allowing one to easily access the user's home directory.
Documentation
simple-home-dir-0.1.2 has been yanked.

simple-home-dir

An extremely small library purposed to retrieve the user's home directory.

How to Use:

use simple_home_dir::*;

fn main() {
    let path = home_dir().unwrap();
    println!("{}", path.display())
}

And that's it!

Compatibility

This works on most operating systems.

Credit

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