which-rs

Crates.iowhich-rs
lib.rswhich-rs
version0.1.1
sourcesrc
created_at2017-09-13 15:28:20.978377
updated_at2017-09-20 08:58:07.142888
descriptionCheck for and locate installed executables from Rust.
homepagehttps://github.com/realityone/which-rs
repository
max_upload_size
id31604
size4,942
realityone (realityone)

documentation

https://github.com/realityone/which-rs

README

which-rs

Check for and locate installed executables from Rust.

Just demostrate how which command works.

Using as a library

Put this crate in your Cargo.toml.

[dependencies]
which-rs = "*"

Usage

extern crate which;

use std::path::{Path, PathBuf};
use std::collections::HashMap;

fn main() {
    let ref file = ["python",];
    let ref paths = [Path::new("/usr/local/bin"), Path::new("/usr/bin")];
    let mut find_path = HashMap::new();

    let all_find = which::which(file, paths, true, Some(&mut find_path));
    println!("All binary is found: {:?}", all_find);
    println!("Located at {:?}", find_path);
}

License

which-rs is licensed under the MIT License - see the LICENSE file for details

Commit count: 0

cargo fmt