A Rust library that helps with cache directories creation in a system-agnostic way.
Note: even though the crate is at version 0.1
, it should be stable
and its API is not expected to change soon.
Add this to your Cargo.toml
:
toml
[dependencies]
cachedir = "0.1"
```rust extern crate cachedir;
use cachedir::CacheDirConfig;
fn main() { let cachedir = CacheDirConfig::new("CacheName") .getcache_dir() .unwrap();
println!("{}", cache_dir.display());
} ```
This creates CacheName
into the user's cache directory.
For more information on the types of caches and code examples, please check the documentation.
cachedir
is distributed under the terms of both the MIT license and the
Apache License (Version 2.0).
See LICENSE-APACHE and LICENSE-MIT for more details.