[package]
edition = "2024"
name = "bash-strings"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse and emit bash's own quoted value forms: @Q words, array literals, declare -p bodies, and a word lexer over bash quoting."
readme = "README.md"
keywords = [
"bash",
"shell",
"quoting",
"parser",
"serialization",
]
categories = [
"parser-implementations",
"encoding",
"command-line-interface",
]
license = "MIT"
repository = "https://github.com/bashmgmt/bash-strings"
[lib]
name = "bash_strings"
path = "src/lib.rs"
[dependencies.indexmap]
version = "2"