2021-02-26 12:45:02 -08:00
|
|
|
[package]
|
|
|
|
|
name = "tree-sitter-PARSER_NAME"
|
2024-09-30 11:11:23 -04:00
|
|
|
description = "PARSER_DESCRIPTION"
|
2024-09-30 13:10:42 -04:00
|
|
|
version = "PARSER_VERSION"
|
2024-09-30 11:11:23 -04:00
|
|
|
authors = ["PARSER_AUTHOR_NAME PARSER_AUTHOR_EMAIL"]
|
|
|
|
|
license = "PARSER_LICENSE"
|
2024-02-27 19:56:47 +02:00
|
|
|
readme = "README.md"
|
|
|
|
|
keywords = ["incremental", "parsing", "tree-sitter", "PARSER_NAME"]
|
2024-10-06 01:36:44 -04:00
|
|
|
categories = ["parser-implementations", "parsing", "text-editors"]
|
2024-09-30 11:11:23 -04:00
|
|
|
repository = "PARSER_URL"
|
2024-02-21 11:47:59 -05:00
|
|
|
edition = "2021"
|
|
|
|
|
autoexamples = false
|
2021-02-26 12:45:02 -08:00
|
|
|
|
|
|
|
|
build = "bindings/rust/build.rs"
|
2024-02-21 11:47:59 -05:00
|
|
|
include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"]
|
2021-02-26 12:45:02 -08:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
path = "bindings/rust/lib.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-23 14:12:58 -08:00
|
|
|
tree-sitter-language = "0.1"
|
|
|
|
|
|
2021-02-26 12:45:02 -08:00
|
|
|
[build-dependencies]
|
2024-09-27 20:55:44 -04:00
|
|
|
cc = "1.1.22"
|
2024-08-29 22:01:02 -04:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-09-30 13:58:27 -04:00
|
|
|
tree-sitter = "RUST_BINDING_VERSION"
|