Build failed. If you want to re-trigger a documentation build, you can do it here. You can find more information on docs.rs builds documentation on the builds page.
# rustc version
rustc 1.19.0-dev (28a93c1f4 2017-05-31)# docs.rs version
cratesfyi 0.4.0-dev (bedcc0c 2017-06-01)# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading findup v0.1.0
Fresh glob v0.2.11
Documenting findup v0.1.0
Running `rustdoc --crate-name findup .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern glob=/home/cratesfyi/cratesfyi/debug/deps/libglob-3660eba282c5ea68.rlib --extern-version glob=glob,0.2.11`
error[E0432]: unresolved import `std::io::fs::PathExtensions`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:11:5
|
11 | use std::io::fs::PathExtensions;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Could not find `fs` in `io`
error[E0412]: cannot find type `Path` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:13:28
|
13 | fn abs_path(path: &str) -> Path {
| ^^^^ not found in this scope
|
help: possible candidate is found in another module, you can import it into scope
| use std::path::Path;
error[E0425]: cannot find function `getcwd` in module `os`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:14:7
|
14 | os::getcwd().unwrap().join(&Path::new(path))
| ^^^^^^ not found in `os`
error[E0433]: failed to resolve. Use of undeclared type or module `Path`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:14:31
|
14 | os::getcwd().unwrap().join(&Path::new(path))
| ^^^^^^^^^ Use of undeclared type or module `Path`
error[E0412]: cannot find type `Path` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:17:20
|
17 | fn full_path(base: Path, path: &str) -> Path {
| ^^^^ not found in this scope
|
help: possible candidate is found in another module, you can import it into scope
| use std::path::Path;
error[E0412]: cannot find type `Path` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:17:41
|
17 | fn full_path(base: Path, path: &str) -> Path {
| ^^^^ not found in this scope
|
help: possible candidate is found in another module, you can import it into scope
| use std::path::Path;
error[E0433]: failed to resolve. Use of undeclared type or module `Path`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:18:14
|
18 | base.join(&Path::new(path))
| ^^^^^^^^^ Use of undeclared type or module `Path`
error[E0412]: cannot find type `Path` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:21:32
|
21 | fn base_path(partial: &str) -> Path {
| ^^^^ not found in this scope
|
help: possible candidate is found in another module, you can import it into scope
| use std::path::Path;
error[E0425]: cannot find function `getcwd` in module `os`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:22:17
|
22 | let cwd = os::getcwd().unwrap();
| ^^^^^^ not found in `os`
error[E0433]: failed to resolve. Use of undeclared type or module `Path`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:25:20
|
25 | _ => cwd.join(&Path::new(partial))
| ^^^^^^^^^ Use of undeclared type or module `Path`
error[E0412]: cannot find type `Path` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:29:41
|
29 | fn lookup(base: &str, pattern: &str) -> Path {
| ^^^^ not found in this scope
|
help: possible candidate is found in another module, you can import it into scope
| use std::path::Path;
error[E0433]: failed to resolve. Use of undeclared type or module `Path`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:34:12
|
34 | return Path::new("");
| ^^^^^^^^^ Use of undeclared type or module `Path`
error[E0412]: cannot find type `Path` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:37:16
|
37 | let buf: Vec<Path> = glob(pattern).collect();
| ^^^^ not found in this scope
|
help: possible candidate is found in another module, you can import it into scope
| use std::path::Path;
error[E0412]: cannot find type `Path` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:46:33
|
46 | pub fn findup(pattern: &str) -> Path {
| ^^^^ not found in this scope
|
help: possible candidate is found in another module, you can import it into scope
| use std::path::Path;
error: The attribute `warm` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs:4:1
|
4 | #[warm(unstable)]
| ^^^^^^^^^^^^^^^^^
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
error: aborting due to previous error(s)
thread 'main' panicked at 'ChainedError {
error: Could not document `findup`.,
cause: process didn't exit successfully: `rustdoc --crate-name findup .cargo/registry/src/github.com-1ecc6299db9ec823/findup-0.1.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern glob=/home/cratesfyi/cratesfyi/debug/deps/libglob-3660eba282c5ea68.rlib --extern-version glob=glob,0.2.11` (exit code: 101)
}', src/bin/cratesfyi.rs:136
note: Run with `RUST_BACKTRACE=1` for a backtrace.