toolchain_find 0.5.1

A small library to help find installed Rust components
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# toolchain_find

[![Coverage Status](https://coveralls.io/repos/github/gsquire/toolchain_find/badge.svg?branch=master)](https://coveralls.io/github/gsquire/toolchain_find?branch=master)

This is a small crate that exposes two functions:

- `find_installed_component` to find a component installed across all toolchains managed by rustup.
- `find_nightly_installed_component` to find a component installed across nightly toolchains managed by rustup.

## Documentation
[Link](https://docs.rs/toolchain_find)

## CI
If you do not have `rustfmt` installed locally, you can just run the unit tests by issuing this command:

```sh
cargo test --lib
```