From 6aff36c70bfaf73d502d6d6d99b6188966f8c149 Mon Sep 17 00:00:00 2001 From: Carlos Fernandez Date: Mon, 27 Jan 2025 19:50:00 -0800 Subject: [PATCH] Update cc version 1.0.90 -> 1.2.10 Summary: Update cc, we need an updated version so we can update other crates we care about. For the two crates that insisted on the old version I created a fork from the same version we're using and changed Cargo.toml in the fork. I couldn't find a way to patch it in place. Anyway that's a temporary hack as hopefully I'll eventually succeed in updating tree-sitter. Reviewed By: jsgf Differential Revision: D68669984 fbshipit-source-id: b7fea9136c1d24c8158f0366012c036e98d9e33e --- Cargo.lock | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3f121793..fe397fe4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -296,9 +296,12 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.106" +version = "1.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "066fce287b1d4eafef758e89e09d724a24808a9196fe9756b8ca90e86d0719a2" +checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229" +dependencies = [ + "shlex", +] [[package]] name = "cfg-if" @@ -2534,6 +2537,12 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + [[package]] name = "slab" version = "0.4.9"