[package] name = "yash-cli" version = "0.1.0" authors = ["WATANABE Yuki "] edition = "2021" rust-version = "1.79.0" description = "Extended POSIX shell" # documentation = "https://yash.osdn.jp/doc/" readme = "README.md" # homepage = "https://yash.osdn.jp/" repository = "https://github.com/magicant/yash-rs" license = "GPL-3.0-or-later" keywords = ["posix", "shell"] categories = ["command-line-utilities"] [[bin]] name = "yash3" path = "src/main.rs" [dependencies] thiserror = "1.0.47" yash-builtin = { path = "../yash-builtin", version = "0.4.0" } yash-env = { path = "../yash-env", version = "0.4.0" } yash-executor = { path = "../yash-executor", version = "1.0.0" } yash-prompt = { path = "../yash-prompt", version = "0.2.0" } yash-semantics = { path = "../yash-semantics", version = "0.4.0" } yash-syntax = { path = "../yash-syntax", version = "0.12.0" } [dev-dependencies] assert_matches = "1.5.0" futures-util = { version = "0.3.28", features = ["channel"] } fuzed-iterator = "1.0.0" nix = { version = "0.29.0", features = ["fs", "process", "term"] } tempfile = "3.8.0"