tree-sitter-dust/Cargo.toml

28 lines
540 B
TOML
Raw Normal View History

2023-08-22 21:02:40 +00:00
[package]
2023-08-22 23:56:12 +00:00
name = "tree-sitter-dust"
description = "dust grammar for the tree-sitter parsing library"
2023-08-22 21:02:40 +00:00
version = "0.0.1"
2023-08-22 23:59:15 +00:00
keywords = ["incremental", "parsing", "dust"]
2023-08-22 21:02:40 +00:00
categories = ["parsing", "text-editors"]
2023-08-22 23:59:15 +00:00
repository = "https://github.com/tree-sitter/tree-sitter-dust"
2023-08-22 21:02:40 +00:00
edition = "2018"
license = "MIT"
build = "bindings/rust/build.rs"
2023-08-22 21:02:40 +00:00
include = [
"bindings/rust/*",
"grammar.js",
"queries/*",
"src/*",
]
[lib]
path = "bindings/rust/lib.rs"
2023-08-22 21:02:40 +00:00
[dependencies]
2023-10-09 18:39:47 +00:00
rayon = "1.8.0"
tree-sitter = "~0.20.10"
2023-08-22 21:02:40 +00:00
[build-dependencies]
cc = "1.0"