tree-sitter-bash/Cargo.toml

30 lines
578 B
TOML
Raw Permalink Normal View History

2021-03-04 22:15:19 +00:00
[package]
name = "tree-sitter-bash"
description = "bash grammar for the tree-sitter parsing library"
2022-05-28 02:48:28 +00:00
version = "0.20.0"
2021-03-04 22:15:19 +00:00
keywords = ["incremental", "parsing", "bash"]
categories = ["parsing", "text-editors"]
2021-05-08 16:29:13 +00:00
repository = "https://github.com/tree-sitter/tree-sitter-bash"
2021-03-04 22:15:19 +00:00
edition = "2018"
2021-03-04 22:20:27 +00:00
license = "MIT"
authors = [
"Max Brunsfeld <maxbrunsfeld@gmail.com",
]
2021-03-04 22:15:19 +00:00
build = "bindings/rust/build.rs"
include = [
"bindings/rust/*",
"grammar.js",
"queries/*",
"src/*",
]
[lib]
path = "bindings/rust/lib.rs"
[dependencies]
2022-05-28 02:48:28 +00:00
tree-sitter = "0.20"
2021-03-04 22:15:19 +00:00
[build-dependencies]
cc = "1.0"