tree-sitter-elixir/Cargo.toml

27 lines
547 B
TOML
Raw Normal View History

2021-09-01 14:44:03 +00:00
[package]
name = "tree-sitter-elixir"
description = "elixir grammar for the tree-sitter parsing library"
version = "0.19.0"
keywords = ["incremental", "parsing", "elixir"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/tree-sitter/tree-sitter-elixir"
edition = "2018"
2021-09-30 12:29:49 +00:00
license = "Apache-2.0"
2021-09-01 14:44:03 +00:00
build = "bindings/rust/build.rs"
include = [
"bindings/rust/*",
"grammar.js",
"queries/*",
"src/*",
]
[lib]
path = "bindings/rust/lib.rs"
[dependencies]
tree-sitter = ">= 0.19, < 0.21"
2021-09-01 14:44:03 +00:00
[build-dependencies]
cc = "1.0"