1[package] 2name = "which" 3version = "4.4.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.1" 16libc = "0.2.121" 17regex = { version = "1.5.5", optional = true } 18 19[target.'cfg(windows)'.dependencies] 20once_cell = "1" 21 22[dev-dependencies] 23tempfile = "3.3.0" 24 25[package.metadata.docs.rs] 26all-features = true 27