From 2dd0454ccb254e20a989c03962e4b56e6a65a9b2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 13 May 2023 02:48:57 +0000 Subject: [PATCH] fix(deps): update rust crate ast-grep-core to 0.5.1 --- Cargo.lock | 18 +++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b0bf3bff..0c8d1fb8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -26,7 +26,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "18c0628014c3076affadfcae6fe1e9f91f2f6d0c17b2f69d82ff8a5eef5a708a" dependencies = [ - "ast-grep-core", + "ast-grep-core 0.4.1", "bit-set", "globset", "regex", @@ -47,13 +47,25 @@ dependencies = [ "tree-sitter-facade-sg", ] +[[package]] +name = "ast-grep-core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0d584b52370cd54cc67259680d00cc4c3186c84925c7f7305bb9c0f76c5c3fa" +dependencies = [ + "bit-set", + "regex", + "thiserror", + "tree-sitter-facade-sg", +] + [[package]] name = "ast-grep-language" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c605af5707fa69cd72dd44eb01ac1d970be6a3eff60eb4908df0a3e761144a12" dependencies = [ - "ast-grep-core", + "ast-grep-core 0.4.1", "ignore", "serde", ] @@ -63,7 +75,7 @@ name = "ast-grep-wasm" version = "0.2.6" dependencies = [ "ast-grep-config", - "ast-grep-core", + "ast-grep-core 0.5.1", "ast-grep-language", "console_error_panic_hook", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index 85507cf4..7fd91316 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ console_error_panic_hook = { version = "0.1.7", optional = true } once_cell = "1.17.1" wee_alloc = { version = "0.4.5" } -ast-grep-core = { version = "0.4.1" } +ast-grep-core = { version = "0.5.1" } ast-grep-config = { version = "0.4.1" } ast-grep-language = { version = "0.4.1", default-features = false } web-tree-sitter-sg = "1.3.3"