tree-sitter/lib/Cargo.toml
Kája Lišková 915834c113 Update CC to version with better target support
This is just a minimal set of changes to dependencies.
macOS aarch64 support was only introduced in `cc` version 1.0.58, so this now allows tree-sitter to build natively on M1 computers
2020-12-20 16:09:17 -06:00

30 lines
622 B
TOML

[package]
name = "tree-sitter"
description = "Rust bindings to the Tree-sitter parsing library"
version = "0.17.1"
authors = ["Max Brunsfeld <maxbrunsfeld@gmail.com>"]
license = "MIT"
readme = "binding_rust/README.md"
keywords = ["incremental", "parsing"]
categories = ["api-bindings", "parsing", "text-editors"]
repository = "https://github.com/tree-sitter/tree-sitter"
build = "binding_rust/build.rs"
include = [
"/binding_rust/*",
"/Cargo.toml",
"/include/*",
"/src/*.h",
"/src/*.c",
"/src/unicode/*",
]
[dependencies]
regex = "1"
[build-dependencies]
cc = "^1.0.58"
[lib]
path = "binding_rust/lib.rs"