which 1.0.5

A Rust equivalent of Unix command "which". Locate installed execuable in cross platforms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: rust

os:
  - linux
  - osx

rust:
  - stable

cache:
  directories:
    - $HOME/.cargo

script:
  - cargo build --all
  - cargo test
  - cargo doc --all --no-deps