[package]
edition = "2024"
rust-version = "1.87.0"
name = "yash-cli"
version = "3.0.5"
authors = ["WATANABE Yuki <magicant@wonderwand.net>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Extended POSIX shell"
readme = "README.md"
keywords = [
"posix",
"shell",
]
categories = ["command-line-utilities"]
license = "GPL-3.0-or-later"
repository = "https://github.com/magicant/yash-rs"
resolver = "2"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/yash-cli-{ version }/{ name }-{ target }{ archive-suffix }"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "yash_cli"
path = "src/lib.rs"
[[bin]]
name = "yash3"
path = "src/main.rs"
[[test]]
name = "scripted_test"
path = "tests/scripted_test.rs"
[dependencies.thiserror]
version = "2.0.4"
[dependencies.yash-builtin]
version = "0.15.0"
[dependencies.yash-env]
version = "0.12.0"
[dependencies.yash-executor]
version = "1.0.0"
[dependencies.yash-prompt]
version = "0.10.0"
[dependencies.yash-semantics]
version = "0.14.0"
[dependencies.yash-syntax]
version = "0.19.0"
[dev-dependencies.assert_matches]
version = "1.5.0"
[dev-dependencies.futures-util]
version = "0.3.31"
features = ["channel"]
[dev-dependencies.fuzed-iterator]
version = "1.0.0"
[dev-dependencies.nix]
version = "0.30.1"
features = [
"fs",
"process",
"term",
]
[dev-dependencies.tempfile]
version = "3.8.0"
[lints]