2021-05-09 22:11:30 -04:00
|
|
|
[package]
|
|
|
|
name = "tree-sitter-dockerfile"
|
|
|
|
description = "dockerfile grammar for the tree-sitter parsing library"
|
2024-05-09 10:18:45 -04:00
|
|
|
version = "0.2.0"
|
2021-05-09 22:11:30 -04:00
|
|
|
keywords = ["incremental", "parsing", "dockerfile"]
|
|
|
|
categories = ["parsing", "text-editors"]
|
2022-01-12 16:47:12 -05:00
|
|
|
repository = "https://github.com/camdencheek/tree-sitter-dockerfile"
|
2021-05-09 22:11:30 -04:00
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
build = "bindings/rust/build.rs"
|
|
|
|
include = [
|
|
|
|
"bindings/rust/*",
|
|
|
|
"grammar.js",
|
|
|
|
"queries/*",
|
|
|
|
"src/*",
|
|
|
|
]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "bindings/rust/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-11-10 11:28:29 -05:00
|
|
|
tree-sitter-language = "0.1.2"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tree-sitter = ">=0.22"
|
2021-05-09 22:11:30 -04:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
cc = "1.0"
|