[package]
edition = "2021"
name = "shell-quote"
version = "0.8.0"
authors = ["Gavin Panella <gavin@allenap.me>"]
build = false
include = [
"LICENSE",
"README.md",
"src/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for shell-quoting strings, e.g. for interpolating into a Bash script."
homepage = "https://github.com/allenap/shell-quote"
readme = "README.md"
keywords = [
"bash",
"dash",
"fish",
"zsh",
"escape",
]
categories = [
"encoding",
"filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/allenap/shell-quote"
[features]
bash = []
default = [
"bstr",
"bash",
"sh",
"fish",
]
fish = []
sh = []
[lib]
name = "shell_quote"
path = "src/lib.rs"
[dependencies.bstr]
version = "1"
optional = true
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.lenient_semver]
version = "0.4"
[dev-dependencies.semver]
version = "1"
[dev-dependencies.test-case]
version = "3"