app_dirs2 2.0.2

Put your app's data in the right place on every platform -- maintained fork.
Documentation
1
2
3
4
5
6
7
8
use common::{AppDataType, AppDirsError};
use std::path::PathBuf;

pub const USE_AUTHOR: bool = false;

pub fn get_app_dir(_t: AppDataType) -> Result<PathBuf, AppDirsError> {
    Err(AppDirsError::NotSupported)
}