docs.rs failed to build findup-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
findup.rs
A Rust tiny crate to find the first file matching in the current directory or the nearest ancestor directory up to root with Glob patterns support. Inspired in node's findup and Go findup
Note: this is still a hacking-driven just-for-fun alpha package as result of a couple of hours learning and playing with Rust
Usage
To use findup
, add this to your Cargo.toml
manifest
[]
= "0.1.0"
And add this to your crate root:
extern crate findup;
Example
extern crate findup;
use path;
use findup;
License
MIT - Tomas Aparicio