commit | 6560ec8245bde1c4de112b4f2d7d3b08ab0afa1f | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue May 21 19:03:33 2024 +0000 |
committer | James Farrell <[email protected]> | Tue May 21 19:03:33 2024 +0000 |
tree | e10a059624825fba343f2bc699bd9edd7e8c759a | |
parent | 35bb38904b9c11ac40b025bc7fe2fe478cedb3d7 [diff] |
Update Android.bp by running cargo_embargo Test: ran cargo_embargo Change-Id: I037962393b8501dfabfca65bdca66f63e855177b
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.