tree-sitter/Cargo.toml

21 lines
451 B
TOML
Raw Normal View History

2016-07-10 14:03:00 -07:00
[package]
name = "tree-sitter"
2018-05-18 11:51:46 -07:00
description = "Rust bindings to the Tree-sitter parsing library"
2016-07-10 14:03:00 -07:00
version = "0.1.0"
authors = ["Max Brunsfeld <maxbrunsfeld@gmail.com>"]
build = "build.rs"
2018-05-18 11:51:46 -07:00
license = "MIT"
2016-07-10 14:03:00 -07:00
include = [
2018-05-18 11:51:46 -07:00
"/build.rs",
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/src/*",
"/vendor/tree-sitter/externals/utf8proc/utf8proc*",
"/vendor/tree-sitter/include/*",
"/vendor/tree-sitter/src/runtime/*",
2016-07-10 14:03:00 -07:00
]
[build-dependencies]
cc = "1.0"