tree-sitter-html/Cargo.toml

26 lines
505 B
TOML
Raw Normal View History

2021-03-04 22:10:32 +00:00
[package]
name = "tree-sitter-html"
description = "html grammar for the tree-sitter parsing library"
2022-05-28 14:40:53 +00:00
version = "0.20.0"
2021-03-04 22:10:32 +00:00
keywords = ["incremental", "parsing", "html"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/tree-sitter/tree-sitter-html"
edition = "2018"
build = "bindings/rust/build.rs"
include = [
"bindings/rust/*",
"grammar.js",
"queries/*",
"src/*",
]
[lib]
path = "bindings/rust/lib.rs"
[dependencies]
2022-05-28 14:40:53 +00:00
tree-sitter = "0.20"
2021-03-04 22:10:32 +00:00
[build-dependencies]
cc = "1.0"