Bug: 153120169

Clone this repo:
  1. 186abdd Migrate 26 crates to monorepo by James Farrell · 4 months ago main master
  2. 9826bee Update Android.bp by running cargo_embargo am: b49e189762 by James Farrell · 6 months ago
  3. b49e189 Update Android.bp by running cargo_embargo by James Farrell · 6 months ago
  4. 10e3fbf Update Android.bp by running cargo_embargo am: 6560ec8245 am: 537e4c6468 by James Farrell · 8 months ago android15-tests-dev
  5. 537e4c6 Update Android.bp by running cargo_embargo am: 6560ec8245 by James Farrell · 8 months ago

Build Status

which

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

Support platforms

  • Linux
  • Windows
  • macOS

Examples

  1. To find which rustc executable binary is using.

    use which::which;
    
    let result = which("rustc").unwrap();
    assert_eq!(result, PathBuf::from("/usr/bin/rustc"));
    
  1. After enabling the regex feature, find all cargo subcommand executables on the path:

    use which::which_re;
    
    which_re(Regex::new("^cargo-.*").unwrap()).unwrap()
        .for_each(|pth| println!("{}", pth.to_string_lossy()));
    

Documentation

The documentation is available online.