xdg-rs 0.0.4

Utility to library to better manage the XDG spec
Build #2697 2016-08-01T11:53:33.716551+00:00
# rustc version
rustc 1.12.0-nightly (54c0dcfd6 2016-07-28)
# docs.rs version
cratesfyi 0.2.0 (5dbd676 2016-07-30)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading xdg-rs v0.0.4
Documenting xdg-rs v0.0.4
Running `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs --crate-name xdg -o /home/cratesfyi/xdg-rs-0.0.4/doc -L dependency=/home/cratesfyi/xdg-rs-0.0.4/debug -L dependency=/home/cratesfyi/xdg-rs-0.0.4/debug/deps`
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:17:39: 17:40 error: expected type, found `|` 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:17 pub fn get_data_home_from_env(getenv: |&str| -> Option<String>) -> Path {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:34:39: 34:40 error: expected type, found `|` 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:34 pub fn get_data_dirs_from_env(getenv: |&str| -> Option<String>) -> Vec<Path> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:64:41: 64:42 error: expected type, found `|` 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:64 pub fn get_config_home_from_env(getenv: |&str| -> Option<String>) -> Path {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:80:41: 80:42 error: expected type, found `|` 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:80 pub fn get_config_dirs_from_env(getenv: |&str| -> Option<String>) -> Vec<Path> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:110:40: 110:41 error: expected type, found `|` 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:110 pub fn get_cache_home_from_env(getenv: |&str| -> Option<String>) -> Path {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:127:41: 127:42 error: expected type, found `|` 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:127 pub fn get_runtime_dir_from_env(getenv: |&str| -> Option<String>) -> Option<Path> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:157:24: 157:25 error: expected type, found `|` 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:157 fn getenv_path(getenv: |&str| -> Option<String>, env_var: &str) -> Option<Path> {
^
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:9:5: 9:32 error: unresolved import `std::io::fs::PathExtensions`. Could not find `fs` in `std::io` [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:9 use std::io::fs::PathExtensions;
^~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:10:5: 10:27 error: unresolved import `std::iter::IteratorExt`. There is no `IteratorExt` in `std::iter`. Did you mean to use `Iterator`? [E0432]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:10 use std::iter::IteratorExt;
^~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:17:68: 17:72 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:17 pub fn get_data_home_from_env(getenv: |&str| -> Option<String>) -> Path {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:17:68: 17:72 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:18:17: 18:23 error: unresolved name `getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:18     getenv_path(getenv, "XDG_DATA_HOME").unwrap_or(
^~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:19:9: 19:20 error: unresolved name `os::homedir` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:19         os::homedir().unwrap().join(".local/share")
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:26:27: 26:31 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:26 pub fn get_data_home() -> Path {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:26:27: 26:31 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:27:28: 27:38 error: unresolved name `os::getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:27     get_data_home_from_env(os::getenv)
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:34:72: 34:76 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:34 pub fn get_data_dirs_from_env(getenv: |&str| -> Option<String>) -> Vec<Path> {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:34:72: 34:76 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:36:23: 36:29 error: unresolved name `getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:36     let paths = match getenv("XDG_DATA_DIRS") {
^~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:49:14: 49:23 error: failed to resolve. Use of undeclared type or module `Path` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:49         .map(Path::new)
^~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:56:31: 56:35 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:56 pub fn get_data_dirs() -> Vec<Path> {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:56:31: 56:35 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:57:28: 57:38 error: unresolved name `os::getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:57     get_data_dirs_from_env(os::getenv)
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:64:70: 64:74 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:64 pub fn get_config_home_from_env(getenv: |&str| -> Option<String>) -> Path {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:64:70: 64:74 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:65:17: 65:23 error: unresolved name `getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:65     getenv_path(getenv, "XDG_CONFIG_HOME").unwrap_or(
^~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:66:9: 66:20 error: unresolved name `os::homedir` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:66         os::homedir().unwrap().join(".config")
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:72:29: 72:33 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:72 pub fn get_config_home() -> Path {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:72:29: 72:33 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:73:30: 73:40 error: unresolved name `os::getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:73     get_config_home_from_env(os::getenv)
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:80:74: 80:78 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:80 pub fn get_config_dirs_from_env(getenv: |&str| -> Option<String>) -> Vec<Path> {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:80:74: 80:78 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:82:23: 82:29 error: unresolved name `getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:82     let paths = match getenv("XDG_CONFIG_DIRS") {
^~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:95:14: 95:23 error: failed to resolve. Use of undeclared type or module `Path` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:95         .map(Path::new)
^~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:102:33: 102:37 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:102 pub fn get_config_dirs() -> Vec<Path> {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:102:33: 102:37 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:103:30: 103:40 error: unresolved name `os::getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:103     get_config_dirs_from_env(os::getenv)
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:110:69: 110:73 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:110 pub fn get_cache_home_from_env(getenv: |&str| -> Option<String>) -> Path {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:110:69: 110:73 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:111:17: 111:23 error: unresolved name `getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:111     getenv_path(getenv, "XDG_CACHE_HOME").unwrap_or(
^~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:112:9: 112:20 error: unresolved name `os::homedir` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:112         os::homedir().unwrap().join(".cache")
^~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:119:28: 119:32 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:119 pub fn get_cache_home() -> Path {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:119:28: 119:32 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:120:29: 120:39 error: unresolved name `os::getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:120     get_cache_home_from_env(os::getenv)
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:127:77: 127:81 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:127 pub fn get_runtime_dir_from_env(getenv: |&str| -> Option<String>) -> Option<Path> {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:127:77: 127:81 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:128:17: 128:23 error: unresolved name `getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:128     getenv_path(getenv, "XDG_RUNTIME_DIR")
^~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:131:36: 131:40 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:131 pub fn get_runtime_dir() -> Option<Path> {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:131:36: 131:40 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:132:17: 132:27 error: unresolved name `os::getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:132     getenv_path(os::getenv, "XDG_RUNTIME_DIR")
^~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:142:32: 142:36 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:142 pub fn test_runtime_dir(path: &Path) -> Result<(), String> {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:142:32: 142:36 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:145:37: 145:50 error: unresolved name `io::GROUP_RWX` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:145             if stat.perm.intersects(io::GROUP_RWX | io::OTHER_RWX) {
^~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:145:53: 145:66 error: unresolved name `io::OTHER_RWX` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:145             if stat.perm.intersects(io::GROUP_RWX | io::OTHER_RWX) {
^~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:157:75: 157:79 error: type name `Path` is undefined or not in scope [E0412]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:157 fn getenv_path(getenv: |&str| -> Option<String>, env_var: &str) -> Option<Path> {
^~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:157:75: 157:79 help: you can import it into scope: `use std::path::Path;`. 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:158:16: 158:22 error: unresolved name `getenv` [E0425]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:158     let path = getenv(env_var);
^~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:161:24: 161:33 error: failed to resolve. Use of undeclared type or module `Path` [E0433]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:161             let path = Path::new(path);
^~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:18:5: 18:41 error: this function takes 1 parameter but 2 parameters were supplied [E0061]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:18     getenv_path(getenv, "XDG_DATA_HOME").unwrap_or(
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:18:5: 18:41 note: the following parameter type was expected: &str 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:27:5: 27:39 error: this function takes 0 parameters but 1 parameter was supplied [E0061]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:27     get_data_home_from_env(os::getenv)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:57:5: 57:39 error: this function takes 0 parameters but 1 parameter was supplied [E0061]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:57     get_data_dirs_from_env(os::getenv)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:65:5: 65:43 error: this function takes 1 parameter but 2 parameters were supplied [E0061]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:65     getenv_path(getenv, "XDG_CONFIG_HOME").unwrap_or(
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:65:5: 65:43 note: the following parameter type was expected: &str 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:73:5: 73:41 error: this function takes 0 parameters but 1 parameter was supplied [E0061]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:73     get_config_home_from_env(os::getenv)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:103:5: 103:41 error: this function takes 0 parameters but 1 parameter was supplied [E0061]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:103     get_config_dirs_from_env(os::getenv)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:111:5: 111:42 error: this function takes 1 parameter but 2 parameters were supplied [E0061]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:111     getenv_path(getenv, "XDG_CACHE_HOME").unwrap_or(
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:111:5: 111:42 note: the following parameter type was expected: &str 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:120:5: 120:40 error: this function takes 0 parameters but 1 parameter was supplied [E0061]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:120     get_cache_home_from_env(os::getenv)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:128:5: 128:43 error: this function takes 1 parameter but 2 parameters were supplied [E0061]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:128     getenv_path(getenv, "XDG_RUNTIME_DIR")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:128:5: 128:43 note: the following parameter type was expected: &str 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:132:5: 132:47 error: this function takes 1 parameter but 2 parameters were supplied [E0061]
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:132     getenv_path(os::getenv, "XDG_RUNTIME_DIR")
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:132:5: 132:47 note: the following parameter type was expected: &str 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:145:16: 145:25 error: the type of this value must be known in this context 
.cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs:145             if stat.perm.intersects(io::GROUP_RWX | io::OTHER_RWX) {
^~~~~~~~~
error: Compilation failed, aborting rustdoc 
thread 'main' panicked at 'ChainedError {
error: failed to compile `xdg-rs v0.0.4`, intermediate artifacts can be found at `/home/cratesfyi/xdg-rs-0.0.4`,
cause: ChainedError {
error: Could not document `xdg-rs`.,
cause: Process didn't exit successfully: `rustdoc .cargo/registry/src/github.com-1ecc6299db9ec823/xdg-rs-0.0.4/src/lib.rs --crate-name xdg -o /home/cratesfyi/xdg-rs-0.0.4/doc -L dependency=/home/cratesfyi/xdg-rs-0.0.4/debug -L dependency=/home/cratesfyi/xdg-rs-0.0.4/debug/deps` (exit code: 101)
}
}', src/bin/cratesfyi.rs:119
note: Run with `RUST_BACKTRACE=1` for a backtrace.