28 lines
676 B
TOML
28 lines
676 B
TOML
|
|
[package]
|
||
|
|
name = "tree-sitter-perga"
|
||
|
|
description = "Basic proof assistant based on Calculus of Constructions"
|
||
|
|
version = "0.1.0"
|
||
|
|
authors = ["William Ball <williampi103@gmail.com>"]
|
||
|
|
license = "GPL3"
|
||
|
|
readme = "README.md"
|
||
|
|
keywords = ["incremental", "parsing", "tree-sitter", "perga"]
|
||
|
|
categories = ["parsing", "text-editors"]
|
||
|
|
repository = "https://forgejo.ballcloud.cc/wball/perga"
|
||
|
|
edition = "2021"
|
||
|
|
autoexamples = false
|
||
|
|
|
||
|
|
build = "bindings/rust/build.rs"
|
||
|
|
include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"]
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
path = "bindings/rust/lib.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
tree-sitter-language = "0.1"
|
||
|
|
|
||
|
|
[build-dependencies]
|
||
|
|
cc = "1.1.22"
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
tree-sitter = "0.24.3"
|