Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
src/ | H | 03-May-2022 | - | 547 | 338 | |
tests/ | H | 03-May-2022 | - | 242 | 189 | |
.cargo-checksum.json | H A D | 03-May-2022 | 89 | 1 | 1 | |
.cargo_vcs_info.json | H A D | 06-Aug-2020 | 74 | 6 | 5 | |
.gitignore | H A D | 09-Jul-2020 | 18 | 3 | 2 | |
.travis.yml | H A D | 09-Jul-2020 | 120 | 11 | 11 | |
Cargo.toml | H A D | 06-Aug-2020 | 1.5 KiB | 44 | 39 | |
Cargo.toml.orig-cargo | H A D | 06-Aug-2020 | 878 | 29 | 24 | |
README.md | H A D | 09-Jul-2020 | 896 | 26 | 14 | |
appveyor.yml | H A D | 09-Jul-2020 | 4 KiB | 120 | 101 | |
appveyor_rust_install.ps1 | H A D | 09-Jul-2020 | 2.6 KiB | 72 | 35 | |
rustfmt.toml | H A D | 09-Jul-2020 | 112 | 5 | 4 |
README.md
1# app_dirs 2 3*Put your app's data in the right place on every platform* 4 5[![crates.io:app_dirs2](https://img.shields.io/crates/v/app_dirs2.svg?label=crates.io%3A%20app_dirs2)](https://crates.io/crates/app_dirs2) 6 7## This is the up-to-date version of `app_dirs` 8 9The original [app_dirs](https://lib.rs/crates/app_dirs) crate is unmaintained and has seriously outdated dependencies. This is an fork that keeps the crate working and up-to-date. 10 11This is a *community-maintained project*, so if you find a bug or the crate is missing support for your platform, please help out. 12 13There are no major changes planned. If you're looking for a crate with more features, check out the [directories](https://lib.rs/crates/directories) crate. 14 15## Documentation & examples 16 17https://docs.rs/app_dirs2 18 19## Installation 20 21Add the following to your `Cargo.toml` under `[dependencies]`: 22 23```toml 24app_dirs2 = "2" 25``` 26