diff --git a/Cargo.lock b/Cargo.lock index 8e2e470..a5778e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -29,13 +29,25 @@ dependencies = [ "tree-sitter", ] +[[package]] +name = "ast-grep-core" +version = "0.39.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22276a7d64e98fb47868bde72676c5d2beff421922099798caef484593ab1fa2" +dependencies = [ + "bit-set", + "regex", + "thiserror", + "tree-sitter", +] + [[package]] name = "ast-grep-dynamic" -version = "0.38.6" +version = "0.39.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf7ff88b95e38a49522827c9a94835d427fc29b41397fa3cca1b8b627a2a55c0" +checksum = "45c694856b5536734c6e649cb0fbfa60d16c19464384ef1d6e293b62c68058c5" dependencies = [ - "ast-grep-core", + "ast-grep-core 0.39.5", "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.6", "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.38.6", "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.38.6", "ast-grep-dynamic", "ast-grep-language", ] diff --git a/crates/thread-core/Cargo.toml b/crates/thread-core/Cargo.toml index 4f72a87..ddc5063 100644 --- a/crates/thread-core/Cargo.toml +++ b/crates/thread-core/Cargo.toml @@ -12,7 +12,7 @@ authors.workspace = true # string-interner.workspace = true ast-grep-core = { version = "0.38.6" } # core library for AST manipulation -ast-grep-dynamic = { version = "0.38.6" } # dynamic language loading at runtime +ast-grep-dynamic = { version = "0.39.5" } # dynamic language loading at runtime ast-grep-language = { version = "0.38.6" } # for language-specific AST manipulation [lints] diff --git a/crates/thread-parse/Cargo.toml b/crates/thread-parse/Cargo.toml index b838bca..0f31c08 100644 --- a/crates/thread-parse/Cargo.toml +++ b/crates/thread-parse/Cargo.toml @@ -15,7 +15,7 @@ authors.workspace = true #petgraph.workspace = true ast-grep-core = { version = "0.38.6" } # core library for AST manipulation -ast-grep-dynamic = { version = "0.38.6" } # dynamic language loading at runtime +ast-grep-dynamic = { version = "0.39.5" } # dynamic language loading at runtime ast-grep-language = { version = "0.38.6" } # for language-specific AST manipulation [lints]