diff --git a/Cargo.lock b/Cargo.lock index 8e2e470..7cf76b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,9 +19,21 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "ast-grep-core" -version = "0.38.6" +version = "0.38.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a807991d95797b16ed5bf7431be8d1890dccb8c1b2e560c1f0d983a4f125405d" +dependencies = [ + "bit-set", + "regex", + "thiserror", + "tree-sitter", +] + +[[package]] +name = "ast-grep-core" +version = "0.39.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79f9731e95d381ae2d8ee1244d21bbf3982840435341ab40260896a76e7e9763" +checksum = "22276a7d64e98fb47868bde72676c5d2beff421922099798caef484593ab1fa2" dependencies = [ "bit-set", "regex", @@ -35,7 +47,7 @@ version = "0.38.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf7ff88b95e38a49522827c9a94835d427fc29b41397fa3cca1b8b627a2a55c0" dependencies = [ - "ast-grep-core", + "ast-grep-core 0.38.7", "ignore", "libloading", "serde", @@ -50,7 +62,7 @@ version = "0.38.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0e32f2833a0fbfdb66e8fbb4de26c89384ab3d6616d2cf00ce3db1fd4de08c5e" dependencies = [ - "ast-grep-core", + "ast-grep-core 0.38.7", "ignore", "serde", "tree-sitter", @@ -496,7 +508,7 @@ version = "0.0.1" name = "thread-core" version = "0.0.1" dependencies = [ - "ast-grep-core", + "ast-grep-core 0.39.5", "ast-grep-dynamic", "ast-grep-language", ] @@ -527,7 +539,7 @@ version = "0.1.0" name = "thread-parser" version = "0.0.1" dependencies = [ - "ast-grep-core", + "ast-grep-core 0.39.5", "ast-grep-dynamic", "ast-grep-language", ] diff --git a/crates/thread-core/Cargo.toml b/crates/thread-core/Cargo.toml index 4f72a87..622c2e1 100644 --- a/crates/thread-core/Cargo.toml +++ b/crates/thread-core/Cargo.toml @@ -11,7 +11,7 @@ authors.workspace = true [dependencies] # string-interner.workspace = true -ast-grep-core = { version = "0.38.6" } # core library for AST manipulation +ast-grep-core = { version = "0.39.5" } # core library for AST manipulation ast-grep-dynamic = { version = "0.38.6" } # dynamic language loading at runtime ast-grep-language = { version = "0.38.6" } # for language-specific AST manipulation diff --git a/crates/thread-parse/Cargo.toml b/crates/thread-parse/Cargo.toml index b838bca..07a1919 100644 --- a/crates/thread-parse/Cargo.toml +++ b/crates/thread-parse/Cargo.toml @@ -14,7 +14,7 @@ authors.workspace = true #string-interner.workspace = true #petgraph.workspace = true -ast-grep-core = { version = "0.38.6" } # core library for AST manipulation +ast-grep-core = { version = "0.39.5" } # core library for AST manipulation ast-grep-dynamic = { version = "0.38.6" } # dynamic language loading at runtime ast-grep-language = { version = "0.38.6" } # for language-specific AST manipulation