34 lines
616 B
TOML
34 lines
616 B
TOML
[package]
|
|
name = "tree-sitter-dust"
|
|
description = "Dust grammar for the tree-sitter parsing library"
|
|
version = "0.0.1"
|
|
keywords = ["incremental", "parsing", "dust"]
|
|
categories = ["parsing", "text-editors"]
|
|
repository = "https://github.com/tree-sitter/tree-sitter-dust"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
|
|
build = "runtime/build.rs"
|
|
include = [
|
|
"bindings/rust/*",
|
|
"grammar.js",
|
|
"queries/*",
|
|
"src/*",
|
|
]
|
|
|
|
[[bin]]
|
|
name = "main"
|
|
path = "runtime/main.rs"
|
|
|
|
[lib]
|
|
path = "runtime/lib.rs"
|
|
|
|
[dependencies]
|
|
clap = "4.4.4"
|
|
dust-lang = "0.1.2"
|
|
rustyline = "12.0.0"
|
|
tree-sitter = "~0.20.10"
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|