[package]
edition = "2021"
name = "bash-ast"
version = "0.8.20"
authors = ["human@yah.dev"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed Rust AST over tree-sitter-bash. Parses bash source into a strongly-typed tree suitable for structural analysis (permission gating, linting, refactoring) rather than execution."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/yah-ai/yah"
[lib]
name = "bash_ast"
path = "src/lib.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "summary"
path = "tests/summary.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "1.0"
[dependencies.tree-sitter]
version = "0.23"
[dependencies.tree-sitter-bash]
version = "0.23"
[dev-dependencies.serde_json]
version = "1.0"