mirror of
https://github.com/ziex-dev/ziex.git
synced 2026-07-20 02:29:36 -06:00
35 lines
740 B
TOML
Generated
35 lines
740 B
TOML
Generated
[package]
|
|
name = "tree-sitter-zx"
|
|
description = "ZX is a framework for building web applications with Zig."
|
|
version = "0.1.0-dev"
|
|
authors = ["Nurul Huda (Apon) <me@nurulhudaapon.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
keywords = ["incremental", "parsing", "tree-sitter", "zx"]
|
|
categories = ["parser-implementations", "parsing", "text-editors"]
|
|
repository = "https://github.com/ziex-dev/ziex"
|
|
edition = "2021"
|
|
autoexamples = false
|
|
|
|
build = "bindings/rust/build.rs"
|
|
include = [
|
|
"bindings/rust/*",
|
|
"grammar.js",
|
|
"queries/*",
|
|
"src/*",
|
|
"tree-sitter.json",
|
|
"/LICENSE",
|
|
]
|
|
|
|
[lib]
|
|
path = "bindings/rust/lib.rs"
|
|
|
|
[dependencies]
|
|
tree-sitter-language = "0.1"
|
|
|
|
[build-dependencies]
|
|
cc = "1.2"
|
|
|
|
[dev-dependencies]
|
|
tree-sitter = "0.25.10"
|