xdg-basedir 1.0.0

Library to help with the XDG basedir spec
Documentation
  • Coverage
  • 50%
    13 out of 26 items documented0 out of 16 items with examples
  • Size
  • Source code size: 28.9 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 557.6 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 7s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Documentation
  • kiran-kp/xdg-basedir
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • kiran-kp

xdg-basedir

Build Status

Documentation

xdg-basedir is a utility library to make conforming to the XDG basedir specification easier.

#Example

#![cfg(unix)]
extern crate xdg_basedir;

#![cfg(unix)]
use xdg_basedir::*;
use std::path::PathBuf;
...
let data_home: PathBuf = try!(get_data_home());
...

Unstable features:

  • Test runtime directory: A function to check if a directory satisfies the XDG spec's requirements of a runtime directory.

The default build of xdg-basedir does not use any unstable libstd features. To enable them, you'll need to use the nightly build of rustc and build xdg-basedir with the 'unstable' feature toggle.

[dependencies.xdg-basedir]
version = "0.2.2"
features = ["unstable"]

Alternate implementation and some initial source borrowed from rust-xdg. The APIs provided by rust-xdg and xdg-basedir are different.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.