tree-sitter-css/Cargo.toml

28 lines
577 B
TOML
Raw Permalink Normal View History

2021-03-04 22:44:19 +00:00
[package]
name = "tree-sitter-css"
description = "css grammar for the tree-sitter parsing library"
2022-05-28 14:47:57 +00:00
version = "0.20.0"
2021-03-04 22:44:19 +00:00
keywords = ["incremental", "parsing", "css"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/tree-sitter/tree-sitter-javascript"
edition = "2018"
license = "MIT"
2021-03-04 22:45:38 +00:00
authors = ["Max Brunsfeld <maxbrunsfeld@gmail.com>"]
2021-03-04 22:44: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 14:47:57 +00:00
tree-sitter = "0.20"
2021-03-04 22:44:19 +00:00
[build-dependencies]
cc = "1.0"