1[package] 2name = "which" 3version = "4.1.0" 4edition = "2018" 5authors = ["Harry Fei <tiziyuanfang@gmail.com>"] 6repository = "https://github.com/harryfei/which-rs.git" 7documentation = "https://docs.rs/which/" 8license = "MIT" 9description = "A Rust equivalent of Unix command \"which\". Locate installed executable in cross platforms." 10readme = "README.md" 11categories = ["os", "filesystem"] 12keywords = ["which", "which-rs", "unix", "command"] 13 14[dependencies] 15either = "1.6" 16libc = "0.2.65" 17 18[dev-dependencies] 19tempdir = "0.3.7" 20