From 2e58ad437e4748702a92d552f97c4bc81d92aa62 Mon Sep 17 00:00:00 2001 From: Manuel Martinez Date: Wed, 6 Sep 2023 01:24:28 -0700 Subject: [PATCH] build: add libcst from crates (#7179) Co-authored-by: Micha Reiser --- Cargo.lock | 6 ++++-- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d132303688be1..2265b48d95159 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1281,7 +1281,8 @@ checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" [[package]] name = "libcst" version = "0.1.0" -source = "git+https://github.com/Instagram/LibCST.git?rev=9c263aa8977962a870ce2770d2aa18ee0dacb344#9c263aa8977962a870ce2770d2aa18ee0dacb344" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7773d520d4292e200ab1838f2daabe2feed7549f93b0a3c7582160a09e79ffde" dependencies = [ "chic", "libcst_derive", @@ -1295,7 +1296,8 @@ dependencies = [ [[package]] name = "libcst_derive" version = "0.1.0" -source = "git+https://github.com/Instagram/LibCST.git?rev=9c263aa8977962a870ce2770d2aa18ee0dacb344#9c263aa8977962a870ce2770d2aa18ee0dacb344" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520197c50ba477f258cd7005ec5ed3a7393693ae6bec664990c7c8d9306a7c0d" dependencies = [ "quote", "syn 1.0.109", diff --git a/Cargo.toml b/Cargo.toml index 2339caf17fa7f..5a5d76595f53f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ uuid = { version = "1.4.1", features = ["v4", "fast-rng", "macro-diagnostics", " wsl = { version = "0.1.0" } # v1.0.1 -libcst = { git = "https://github.com/Instagram/LibCST.git", rev = "9c263aa8977962a870ce2770d2aa18ee0dacb344", default-features = false } +libcst = { version = "0.1.0", default-features = false } [profile.release] lto = "fat"