28 lines
588 B
TOML
28 lines
588 B
TOML
[package]
|
|
name = "tree-sitter-objc"
|
|
description = "Objective-C grammar for the tree-sitter parsing library"
|
|
version = "1.0.0"
|
|
authors = ["Jiyee Sheng <jiyee.sheng@gmail.com>"]
|
|
license = "MIT"
|
|
keywords = ["tree-sitter", "incremental", "parsing", "objc"]
|
|
categories = ["parsing", "text-editors"]
|
|
repository = "https://github.com/jiyee/tree-sitter-objc"
|
|
edition = "2022"
|
|
|
|
build = "bindings/rust/build.rs"
|
|
include = [
|
|
"bindings/rust/*",
|
|
"grammar.js",
|
|
"queries/*",
|
|
"src/*",
|
|
]
|
|
|
|
[lib]
|
|
path = "bindings/rust/lib.rs"
|
|
|
|
[dependencies]
|
|
tree-sitter = "0.20.6"
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|