diff --git a/Cargo.lock b/Cargo.lock index 0c8d1fb8..ae2eba7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -20,13 +20,20 @@ dependencies = [ "memchr", ] +[[package]] +name = "anyhow" +version = "1.0.71" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" + [[package]] name = "ast-grep-config" -version = "0.4.1" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18c0628014c3076affadfcae6fe1e9f91f2f6d0c17b2f69d82ff8a5eef5a708a" +checksum = "681c537ae1fc2e72cf6af985ab400386b4d7bc1e3682d6c366959fbcdf869d31" dependencies = [ - "ast-grep-core 0.4.1", + "anyhow", + "ast-grep-core 0.5.1", "bit-set", "globset", "regex", diff --git a/Cargo.toml b/Cargo.toml index 7fd91316..a62fb2ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,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.5.1" } -ast-grep-config = { version = "0.4.1" } +ast-grep-config = { version = "0.5.1" } ast-grep-language = { version = "0.4.1", default-features = false } web-tree-sitter-sg = "1.3.3" tree-sitter = { version = "0.9.1", package = "tree-sitter-facade-sg" }