steamlocate 2.1.0

Crate for locating Steam game installation directories (and Steam itself!)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod helpers;
mod temp;

pub type TestError = Box<dyn std::error::Error>;
pub type TestResult = Result<(), TestError>;

pub mod prelude {
    pub use super::{
        helpers::{
            expect_test_env, AppFile, SampleApp, SampleShortcuts, TempLibrary, TempSteamDir,
        },
        TestError, TestResult,
    };
}