Bump LibCST to 1.8.4 (#20321)

This should fix the fuzz build on `main`. They added support for
t-strings, which made one of our matches non-exhaustive.

https://github.com/Instagram/LibCST/releases/tag/v1.8.4
This commit is contained in:
Brent Westbrook 2025-09-09 17:34:33 -04:00 committed by GitHub
parent ed06fb5ce2
commit 9cb37db510
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View File

@ -1770,9 +1770,9 @@ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
[[package]] [[package]]
name = "libcst" name = "libcst"
version = "1.8.2" version = "1.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae28ddc5b90c3e3146a21d051ca095cbc8d932ad8714cf65ddf71a9abb35684c" checksum = "052ef5d9fc958a51aeebdf3713573b36c6fd6eed0bf0e60e204d2c0f8cf19b9f"
dependencies = [ dependencies = [
"annotate-snippets", "annotate-snippets",
"libcst_derive", "libcst_derive",
@ -1785,9 +1785,9 @@ dependencies = [
[[package]] [[package]]
name = "libcst_derive" name = "libcst_derive"
version = "1.8.2" version = "1.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc2de5c2f62bcf8a4f7290b1854388b262c4b68f1db1a3ee3ef6d4c1319b00a3" checksum = "a91a751afee92cbdd59d4bc6754c7672712eec2d30a308f23de4e3287b2929cb"
dependencies = [ dependencies = [
"quote", "quote",
"syn", "syn",

View File

@ -115,7 +115,7 @@ jiff = { version = "0.2.0" }
js-sys = { version = "0.3.69" } js-sys = { version = "0.3.69" }
jod-thread = { version = "1.0.0" } jod-thread = { version = "1.0.0" }
libc = { version = "0.2.153" } libc = { version = "0.2.153" }
libcst = { version = "1.1.0", default-features = false } libcst = { version = "1.8.4", default-features = false }
log = { version = "0.4.17" } log = { version = "0.4.17" }
lsp-server = { version = "0.7.6" } lsp-server = { version = "0.7.6" }
lsp-types = { git = "https://github.com/astral-sh/lsp-types.git", rev = "3512a9f", features = [ lsp-types = { git = "https://github.com/astral-sh/lsp-types.git", rev = "3512a9f", features = [

View File

@ -164,7 +164,7 @@ fn remove_specifiers<'a>(value: &mut Expression<'a>, arena: &'a typed_arena::Are
stack.push(&mut string.left); stack.push(&mut string.left);
stack.push(&mut string.right); stack.push(&mut string.right);
} }
libcst_native::String::Formatted(_) => {} libcst_native::String::Formatted(_) | libcst_native::String::Templated(_) => {}
} }
} }
} }