quest 0.3.0

Simple command-line user input.
Documentation
1
2
3
4
5
6
7
8
9
cfg_if! {
    if #[cfg(windows)] {
        mod windows;
        pub use self::windows::*;
    } else if #[cfg(unix)] {
        mod unix;
        pub use self::unix::*;
    }
}