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
This commit is contained in:
Kája Lišková 2020-12-20 16:09:17 -06:00
parent d6a3e4c98c
commit 915834c113
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View file

@ -123,9 +123,9 @@ dependencies = [
[[package]]
name = "cc"
version = "1.0.25"
version = "1.0.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16"
checksum = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48"
[[package]]
name = "cfg-if"

View file

@ -20,7 +20,7 @@ harness = false
[dependencies]
ansi_term = "0.11"
cc = "1.0"
cc = "^1.0.58"
atty = "0.2"
clap = "2.32"
difference = "2.0"

View file

@ -24,7 +24,7 @@ include = [
regex = "1"
[build-dependencies]
cc = "1.0"
cc = "^1.0.58"
[lib]
path = "binding_rust/lib.rs"