toolchain_find 0.4.0

A small library to help find installed Rust components
Documentation
1
2
3
4
5
6
7
use toolchain_find;

#[test]
fn cross_platform() {
    let path = toolchain_find::find_installed_component("rustfmt");
    assert!(path.is_some());
}