[package]
edition = "2024"
name = "yosh"
version = "0.1.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A POSIX-compliant shell implemented in Rust"
readme = false
license = "MIT"
repository = "https://github.com/k-ymmt/yosh"
[lib]
name = "yosh"
path = "src/lib.rs"
[[bin]]
name = "yosh"
path = "src/main.rs"
[[test]]
name = "cli_help"
path = "tests/cli_help.rs"
[[test]]
name = "errexit"
path = "tests/errexit.rs"
[[test]]
name = "history"
path = "tests/history.rs"
[[test]]
name = "ignored_on_entry"
path = "tests/ignored_on_entry.rs"
[[test]]
name = "interactive"
path = "tests/interactive.rs"
[[test]]
name = "parser_integration"
path = "tests/parser_integration.rs"
[[test]]
name = "plugin"
path = "tests/plugin.rs"
[[test]]
name = "pty_interactive"
path = "tests/pty_interactive.rs"
[[test]]
name = "signals"
path = "tests/signals.rs"
[[test]]
name = "subshell"
path = "tests/subshell.rs"
[[bench]]
name = "expand_bench"
path = "benches/expand_bench.rs"
harness = false
[[bench]]
name = "lexer_bench"
path = "benches/lexer_bench.rs"
harness = false
[[bench]]
name = "parser_bench"
path = "benches/parser_bench.rs"
harness = false
[dependencies.crossterm]
version = "0.29"
[dependencies.libc]
version = "0.2"
[dependencies.libloading]
version = "0.8"
[dependencies.nix]
version = "0.31"
features = [
"signal",
"process",
"fs",
"poll",
"term",
]
[dependencies.owo-colors]
version = "4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.toml]
version = "0.8"
[dependencies.unicode-width]
version = "0.2"
[dependencies.yosh-plugin-api]
version = "0.1.2"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.crossterm]
version = "0.29"
[dev-dependencies.expectrl]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"