Refactor tool execution pipeline

This commit is contained in:
2026-06-21 14:30:40 +08:00
parent 3e5f0658b3
commit 99c1e9cd6c
81 changed files with 3587 additions and 5317 deletions
+3
View File
@@ -12,6 +12,7 @@ reqwest = { version = "0.12", default-features = false, features = ["json", "str
# ── 序列化 ──
serde = { version = "1.0", features = ["derive"] } # 序列化/反序列化
serde_json = "1.0" # JSON 处理
serde_yaml = "0.9" # YAML 解析(工具规范文件)
# ── 环境变量加载 ──
dotenvy = "0.15" # .env 文件加载
# ── CLI 参数解析 ──
@@ -42,6 +43,8 @@ sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "postgres", "uui
dirs = "6.0.0" # 系统目录路径
# ── HTML 解析 ──
scraper = "0.27.0" # HTML 解析(fetch_page 工具)
# ── 正则表达式 ──
regex = "1.0" # 代码块解析
[[bin]]
name = "ias"