[package] name = "yash-builtin" version = "0.4.0" authors = ["WATANABE Yuki "] edition = "2021" rust-version = "1.79.0" description = "Implementation of the built-in utilities of yash" # 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"] [features] default = ["yash-prompt", "yash-semantics"] # yash-prompt is used in the read built-in, which requires yash-semantics. yash-prompt = ["dep:yash-prompt", "yash-semantics"] yash-semantics = ["dep:yash-semantics", "dep:enumset"] [dependencies] either = "1.9.0" enumset = { version = "1.1.2", optional = true } itertools = "0.13.0" thiserror = "1.0.47" yash-env = { path = "../yash-env", version = "0.4.0" } yash-prompt = { path = "../yash-prompt", version = "0.2.0", optional = true } yash-quote = { path = "../yash-quote", version = "1.1.1" } yash-semantics = { path = "../yash-semantics", version = "0.4.0", optional = true } yash-syntax = { path = "../yash-syntax", version = "0.12.0" } [dev-dependencies] assert_matches = "1.5.0" futures-executor = "0.3.28" futures-util = { version = "0.3.28", features = ["channel"] } yash-env-test-helper = { path = "../yash-env-test-helper", version = "0.2.0" } yash-semantics = { path = "../yash-semantics", version = "0.4.0" }