[package]
edition = "2021"
rust-version = "1.70.0"
name = "shell-sanitize"
version = "0.1.0"
authors = ["Yutaka Nishimura"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe input sanitizer for shell arguments and file paths — rejects injection, traversal, and expansion attacks"
homepage = "https://github.com/ynishi/shell-sanitize"
readme = "README.md"
keywords = [
"sanitize",
"shell",
"injection",
"security",
"path",
]
categories = [
"command-line-utilities",
"filesystem",
"os",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/shell-sanitize"
[lib]
name = "shell_sanitize"
path = "src/lib.rs"
[[test]]
name = "core_tests"
path = "tests/core_tests.rs"
[[bench]]
name = "sanitizer_bench"
path = "benches/sanitizer_bench.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"