commit | 10e3fbf7d389ca46f7598e3488a5e49ddf7c5969 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Wed May 22 23:33:36 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed May 22 23:33:36 2024 +0000 |
tree | e10a059624825fba343f2bc699bd9edd7e8c759a | |
parent | 35bb38904b9c11ac40b025bc7fe2fe478cedb3d7 [diff] | |
parent | 537e4c6468d7005b5e0f57fef8770df9cd613ca5 [diff] |
Update Android.bp by running cargo_embargo am: 6560ec8245 am: 537e4c6468 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/which/+/3096425 Change-Id: I5c0f6a0d7c8993f4877756a90054dc6d691312d2 Signed-off-by: Automerger Merge Worker <[email protected]>
A Rust equivalent of Unix command “which”. Locate installed executable in cross platforms.
To find which rustc executable binary is using.
use which::which; let result = which("rustc").unwrap(); assert_eq!(result, PathBuf::from("/usr/bin/rustc"));
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()));
The documentation is available online.