added ast-grep use

g3 tool use of ast-grep command with batching for faster code exploration.
This commit is contained in:
Jochen
2025-11-01 14:59:55 +11:00
parent f89bbfc89a
commit ad9ba5e5d8
4 changed files with 919 additions and 1 deletions

20
Cargo.lock generated
View File

@@ -1391,6 +1391,7 @@ dependencies = [
"reqwest",
"serde",
"serde_json",
"serde_yaml",
"shellexpand",
"thiserror 1.0.69",
"tokio",
@@ -3078,6 +3079,19 @@ dependencies = [
"serde",
]
[[package]]
name = "serde_yaml"
version = "0.9.34+deprecated"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
dependencies = [
"indexmap",
"itoa",
"ryu",
"serde",
"unsafe-libyaml",
]
[[package]]
name = "sha2"
version = "0.10.9"
@@ -3667,6 +3681,12 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
[[package]]
name = "unsafe-libyaml"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
[[package]]
name = "url"
version = "2.5.7"