commit | b434f32a5180c78f857a98eee7174a1dfeb7f829 | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Mon Nov 29 14:05:59 2021 -0800 |
committer | Joel Galenson <[email protected]> | Fri Dec 10 15:33:46 2021 -0800 |
tree | 2ea0e76815a667dd8445edec8840f25fd980fc12 | |
parent | 915d915d5dad3bab02113aad69e62f43bd0b75d1 [diff] |
Refresh Android.bp, cargo2android.json, TEST_MAPPING. Test: None Change-Id: If91c4875b2bc40f67facd83b1e46bf87866b34c5
A Rust equivalent of Unix command “which”. Locate installed executable in cross platforms.
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"));
The documentation is available online.