simple-home-dir 0.1.1

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

simple-home-dir

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

How to Use:

use simple_home_dir::*;

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.