Upgrade rust/crates/which to 4.0.1 am: 8b6eb89f36

Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/which/+/1360861

Change-Id: I50b4748584f350c02a8dc8e679e3b2ae288a260e
tree: 6a70b20b99ff51d93896380d942ea1628c1ad441
  1. src/
  2. tests/
  3. .cargo_vcs_info.json
  4. .gitignore
  5. .travis.yml
  6. Android.bp
  7. appveyor.yml
  8. Cargo.toml
  9. Cargo.toml.orig
  10. LICENSE.txt
  11. METADATA
  12. MODULE_LICENSE_BSD_LIKE
  13. OWNERS
  14. README.md
README.md

Travis Build Status Appveyor Build status

which

A Rust equivalent of Unix command “which”. Locate installed executable in cross platforms.

Support platforms

  • Linux
  • Windows
  • macOS

Example

To find which rustc exectable binary is using.

use which::which;

let result = which::which("rustc").unwrap();
assert_eq!(result, PathBuf::from("/usr/bin/rustc"));

Documentation

The documentation is available online.