Add Cargo.toml
This commit is contained in:
parent
a11ec77169
commit
fe66cf4fdb
1 changed files with 28 additions and 0 deletions
28
Cargo.toml
Normal file
28
Cargo.toml
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
[package]
|
||||||
|
name = "tree-sitter-zedee"
|
||||||
|
description = "Zedee grammar for the tree-sitter parsing library"
|
||||||
|
version = "0.2.0"
|
||||||
|
readme = "bindings/rust/README.md"
|
||||||
|
keywords = ["incremental", "parsing", "zedee"]
|
||||||
|
categories = ["parsing", "text-editors"]
|
||||||
|
homepage = "https://git.deadrobots.me/DeadRobots//tree-sitter-zedee"
|
||||||
|
repository = "https://git.deadrobots.me/DeadRobots//tree-sitter-zedee"
|
||||||
|
edition = "2025"
|
||||||
|
publish = false
|
||||||
|
license = "Apache-2.0"
|
||||||
|
|
||||||
|
build = "bindings/rust/build.rs"
|
||||||
|
include = [
|
||||||
|
"bindings/rust/*",
|
||||||
|
"grammar.js",
|
||||||
|
"src/*",
|
||||||
|
]
|
||||||
|
|
||||||
|
[lib]
|
||||||
|
path = "bindings/rust/lib.rs"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
tree-sitter = "0.20.8"
|
||||||
|
|
||||||
|
[build-dependencies]
|
||||||
|
cc = "*"
|
||||||
Loading…
Reference in a new issue