[package]
edition = "2024"
rust-version = "1.85"
name = "epsh"
version = "0.0.6"
build = false
exclude = [
"check.t",
"check.pl",
"check-epsh.t",
"filter-tests.pl",
"tests/stress/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "embeddable posix shell"
readme = "README.md"
keywords = [
"shell",
"posix",
"embedded",
"scripting",
]
categories = [
"command-line-utilities",
"os::unix-apis",
]
license = "MIT"
repository = "https://github.com/joshuarli/epsh"
[lib]
name = "epsh"
path = "src/lib.rs"
[[bin]]
name = "emit_hex"
path = "tests/fixtures/emit_hex.rs"
[[bin]]
name = "epsh"
path = "src/main.rs"
[[bin]]
name = "show_argv"
path = "tests/fixtures/show_argv.rs"
[[bin]]
name = "show_env"
path = "tests/fixtures/show_env.rs"
[[bin]]
name = "stat_path"
path = "tests/fixtures/stat_path.rs"
[[test]]
name = "api_stability"
path = "tests/api_stability.rs"
[[test]]
name = "embedding"
path = "tests/embedding.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.libc]
version = "0.2.184"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true