Files
tree-sitter-jhcl/Cargo.toml

22 lines
514 B
TOML
Raw Normal View History

2022-06-18 04:40:10 -06:00
[package]
name = "tree-sitter-hcl"
description = "hcl grammar for the tree-sitter parsing library"
version = "0.0.1"
keywords = ["incremental", "parsing", "hcl"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/MichaHoffmann/tree-sitter-hcl"
edition = "2018"
license = "Apache"
build = "bindings/rust/build.rs"
2023-06-19 02:15:41 -04:00
include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"]
2022-06-18 04:40:10 -06:00
[lib]
path = "bindings/rust/lib.rs"
[dependencies]
2023-06-19 02:15:41 -04:00
tree-sitter = "~0.20.10"
2022-06-18 04:40:10 -06:00
[build-dependencies]
cc = "1.0"