From 7de294375b047472efbb37e2a322db4d524dfe3e Mon Sep 17 00:00:00 2001 From: iven Date: Sun, 29 Mar 2026 21:45:29 +0800 Subject: [PATCH] =?UTF-8?q?feat(auth):=20=E6=B7=BB=E5=8A=A0=E5=BC=82?= =?UTF-8?q?=E6=AD=A5=E5=AF=86=E7=A0=81=E5=93=88=E5=B8=8C=E5=92=8C=E9=AA=8C?= =?UTF-8?q?=E8=AF=81=E5=87=BD=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refactor(relay): 复用HTTP客户端和请求体序列化结果 feat(kernel): 添加获取单个审批记录的方法 fix(store): 改进SaaS连接错误分类和降级处理 docs: 更新审计文档和系统架构文档 refactor(prompt): 优化SQL查询参数化绑定 refactor(migration): 使用静态SQL和COALESCE更新配置项 feat(commands): 添加审批执行状态追踪和事件通知 chore: 更新启动脚本以支持Admin后台 fix(auth-guard): 优化授权状态管理和错误处理 refactor(db): 使用异步密码哈希函数 refactor(totp): 使用异步密码验证函数 style: 清理无用文件和注释 docs: 更新功能全景和审计文档 refactor(service): 优化HTTP客户端重用和请求处理 fix(connection): 改进SaaS不可用时的降级处理 refactor(handlers): 使用异步密码验证函数 chore: 更新依赖和工具链配置 --- Authorization | 0 admin/src/components/auth-guard.tsx | 37 +- crates/zclaw-kernel/src/kernel.rs | 8 + .../20260329000001_initial_schema.sql | 9 +- crates/zclaw-saas/src/account/service.rs | 188 ++++-- .../zclaw-saas/src/agent_template/service.rs | 212 ++---- crates/zclaw-saas/src/auth/handlers.rs | 13 +- crates/zclaw-saas/src/auth/password.rs | 22 +- crates/zclaw-saas/src/auth/totp.rs | 2 +- crates/zclaw-saas/src/db.rs | 12 +- crates/zclaw-saas/src/migration/service.rs | 111 ++-- crates/zclaw-saas/src/model_config/service.rs | 178 +++--- crates/zclaw-saas/src/prompt/service.rs | 64 +- crates/zclaw-saas/src/relay/handlers.rs | 11 +- crates/zclaw-saas/src/relay/service.rs | 22 +- .../src/intelligence/extraction_adapter.rs | 321 ++++++++++ desktop/src-tauri/src/intelligence/mod.rs | 11 + desktop/src-tauri/src/kernel_commands.rs | 175 ++++- desktop/src/components/AuditLogsPanel.tsx | 3 +- desktop/src/components/LoginPage.tsx | 1 + desktop/src/components/SaaS/SaaSSettings.tsx | 4 +- desktop/src/lib/saas-client.ts | 9 +- desktop/src/store/connectionStore.ts | 26 +- desktop/src/store/saasStore.ts | 22 +- .../08-saas-platform/00-saas-overview.md | 17 +- docs/features/AUDIT_TRACKER.md | 9 +- docs/features/COMPREHENSIVE_AUDIT_V9.md | 47 +- docs/features/README.md | 25 +- docs/features/SYSTEM_ARCHITECTURE.md | 74 ++- .../knowledge-base/deer-flow-deep-analysis.md | 504 +++++++++++++++ start-all.ps1 | 94 ++- target/.rustc_info.json | 2 +- target/flycheck0/stderr | 98 +-- target/flycheck0/stdout | 604 +++++++++--------- 34 files changed, 2041 insertions(+), 894 deletions(-) create mode 100644 Authorization create mode 100644 desktop/src-tauri/src/intelligence/extraction_adapter.rs create mode 100644 docs/knowledge-base/deer-flow-deep-analysis.md diff --git a/Authorization b/Authorization new file mode 100644 index 0000000..e69de29 diff --git a/admin/src/components/auth-guard.tsx b/admin/src/components/auth-guard.tsx index 1703234..c4fdcc3 100644 --- a/admin/src/components/auth-guard.tsx +++ b/admin/src/components/auth-guard.tsx @@ -1,6 +1,6 @@ 'use client' -import { useEffect, useState, useCallback, type ReactNode } from 'react' +import { useEffect, useState, useRef, useCallback, type ReactNode } from 'react' import { useRouter } from 'next/navigation' import { isAuthenticated, getAccount, clearAuth } from '@/lib/auth' import { api, ApiRequestError } from '@/lib/api-client' @@ -18,50 +18,61 @@ export function AuthGuard({ children }: AuthGuardProps) { const [verifying, setVerifying] = useState(true) const [connectionError, setConnectionError] = useState(false) + // Ref 跟踪授权状态,避免 useCallback 闭包捕获过时的 state + const authorizedRef = useRef(false) + // 防止并发验证(RSC 导航可能触发多次 effect) + const verifyingRef = useRef(false) + const verifyAuth = useCallback(async () => { + // 防止并发验证 + if (verifyingRef.current) return + verifyingRef.current = true setVerifying(true) setConnectionError(false) if (!isAuthenticated()) { setVerifying(false) + verifyingRef.current = false router.replace('/login') return } - // Already authorized? Skip re-verification on remount (e.g. Next.js RSC navigation) - // The token in localStorage is the source of truth; re-verify only on first mount try { const serverAccount = await api.auth.me() setAccount(serverAccount) setAuthorized(true) + authorizedRef.current = true } catch (err) { - // Ignore abort errors — caused by navigation/SWR cancelling in-flight requests - // Keep current authorized state intact + // AbortError: 导航/SWR 取消了请求,忽略 + // 如果已有授权(ref 跟踪),保持不变;否则尝试 localStorage 缓存 if (err instanceof DOMException && err.name === 'AbortError') { - // If already authorized, stay authorized; otherwise fall through to retry - if (!authorized) { - // First mount was aborted — use cached account from localStorage + if (!authorizedRef.current) { const cachedAccount = getAccount() if (cachedAccount) { setAccount(cachedAccount) setAuthorized(true) + authorizedRef.current = true } } return } - // Only clear auth on actual authentication failures (401/403) - // Network errors, timeouts should NOT destroy the session + // 401/403: 真正的认证失败,清除 token if (err instanceof ApiRequestError && (err.status === 401 || err.status === 403)) { clearAuth() + authorizedRef.current = false router.replace('/login') } else { - // Transient error — show retry UI, keep token in localStorage - setConnectionError(true) + // 网络错误/超时 — 仅在未授权时显示连接错误 + // 已授权的情况下忽略瞬态错误,保持当前状态 + if (!authorizedRef.current) { + setConnectionError(true) + } } } finally { setVerifying(false) + verifyingRef.current = false } - }, [router, authorized]) + }, [router]) useEffect(() => { verifyAuth() diff --git a/crates/zclaw-kernel/src/kernel.rs b/crates/zclaw-kernel/src/kernel.rs index 4da0ef3..a5bebd1 100644 --- a/crates/zclaw-kernel/src/kernel.rs +++ b/crates/zclaw-kernel/src/kernel.rs @@ -823,6 +823,14 @@ impl Kernel { approvals.iter().filter(|a| a.status == "pending").cloned().collect() } + /// Get a single approval by ID (any status, not just pending) + /// + /// Returns None if no approval with the given ID exists. + pub async fn get_approval(&self, id: &str) -> Option { + let approvals = self.pending_approvals.lock().await; + approvals.iter().find(|a| a.id == id).cloned() + } + /// Create a pending approval (called when a needs_approval hand is triggered) pub async fn create_approval(&self, hand_id: String, input: serde_json::Value) -> ApprovalEntry { let entry = ApprovalEntry { diff --git a/crates/zclaw-saas/migrations/20260329000001_initial_schema.sql b/crates/zclaw-saas/migrations/20260329000001_initial_schema.sql index 755d81d..8c1313b 100644 --- a/crates/zclaw-saas/migrations/20260329000001_initial_schema.sql +++ b/crates/zclaw-saas/migrations/20260329000001_initial_schema.sql @@ -137,7 +137,8 @@ CREATE TABLE IF NOT EXISTS usage_records ( ); CREATE INDEX IF NOT EXISTS idx_usage_account ON usage_records(account_id); CREATE INDEX IF NOT EXISTS idx_usage_time ON usage_records(created_at); -CREATE INDEX IF NOT EXISTS idx_usage_day ON usage_records((created_at::date)); +-- idx_usage_day: Skipping because ::date on TIMESTAMPTZ is not IMMUTABLE +-- CREATE INDEX IF NOT EXISTS idx_usage_day ON usage_records((created_at::date)); CREATE TABLE IF NOT EXISTS relay_tasks ( id TEXT PRIMARY KEY, @@ -163,7 +164,8 @@ CREATE INDEX IF NOT EXISTS idx_relay_status ON relay_tasks(status); CREATE INDEX IF NOT EXISTS idx_relay_account ON relay_tasks(account_id); CREATE INDEX IF NOT EXISTS idx_relay_provider ON relay_tasks(provider_id); CREATE INDEX IF NOT EXISTS idx_relay_time ON relay_tasks(created_at); -CREATE INDEX IF NOT EXISTS idx_relay_day ON relay_tasks((created_at::date)); +-- idx_relay_day: Skipping because ::date on TIMESTAMPTZ is not IMMUTABLE +-- CREATE INDEX IF NOT EXISTS idx_relay_day ON relay_tasks((created_at::date)); CREATE TABLE IF NOT EXISTS config_items ( id TEXT PRIMARY KEY, @@ -318,7 +320,8 @@ CREATE TABLE IF NOT EXISTS telemetry_reports ( CREATE INDEX IF NOT EXISTS idx_telemetry_account ON telemetry_reports(account_id); CREATE INDEX IF NOT EXISTS idx_telemetry_time ON telemetry_reports(reported_at); CREATE INDEX IF NOT EXISTS idx_telemetry_model ON telemetry_reports(model_id); -CREATE INDEX IF NOT EXISTS idx_telemetry_day ON telemetry_reports((reported_at::date)); +-- idx_telemetry_day: Skipping because ::date on TIMESTAMPTZ is not IMMUTABLE +-- CREATE INDEX IF NOT EXISTS idx_telemetry_day ON telemetry_reports((reported_at::date)); -- Refresh Token storage (single-use, JWT jti tracking) CREATE TABLE IF NOT EXISTS refresh_tokens ( diff --git a/crates/zclaw-saas/src/account/service.rs b/crates/zclaw-saas/src/account/service.rs index 52c2d8b..ce7a2ad 100644 --- a/crates/zclaw-saas/src/account/service.rs +++ b/crates/zclaw-saas/src/account/service.rs @@ -14,55 +14,109 @@ pub async fn list_accounts( let page_size = query.page_size.unwrap_or(20).min(100); let offset = (page - 1) * page_size; - let mut where_clauses = Vec::new(); - let mut params: Vec = Vec::new(); - let mut param_idx = 1usize; - - if let Some(role) = &query.role { - where_clauses.push(format!("role = ${}", param_idx)); - param_idx += 1; - params.push(role.clone()); - } - if let Some(status) = &query.status { - where_clauses.push(format!("status = ${}", param_idx)); - param_idx += 1; - params.push(status.clone()); - } - if let Some(search) = &query.search { - where_clauses.push(format!("(username LIKE ${} OR email LIKE ${} OR display_name LIKE ${})", param_idx, param_idx + 1, param_idx + 2)); - param_idx += 3; - let pattern = format!("%{}%", search); - params.push(pattern.clone()); - params.push(pattern.clone()); - params.push(pattern); - } - - let where_sql = if where_clauses.is_empty() { - String::new() - } else { - format!("WHERE {}", where_clauses.join(" AND ")) + // Static SQL per combination -- no format!() string interpolation + let (total, rows) = match (&query.role, &query.status, &query.search) { + // role + status + search + (Some(role), Some(status), Some(search)) => { + let pattern = format!("%{}%", search); + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM accounts WHERE role = $1 AND status = $2 AND (username LIKE $3 OR email LIKE $3 OR display_name LIKE $3)" + ).bind(role).bind(status).bind(&pattern).fetch_one(db).await?; + let rows = sqlx::query_as::<_, AccountRow>( + "SELECT id, username, email, display_name, role, status, totp_enabled, last_login_at, created_at + FROM accounts WHERE role = $1 AND status = $2 AND (username LIKE $3 OR email LIKE $3 OR display_name LIKE $3) + ORDER BY created_at DESC LIMIT $4 OFFSET $5" + ).bind(role).bind(status).bind(&pattern).bind(page_size as i64).bind(offset as i64).fetch_all(db).await?; + (total, rows) + } + // role + status + (Some(role), Some(status), None) => { + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM accounts WHERE role = $1 AND status = $2" + ).bind(role).bind(status).fetch_one(db).await?; + let rows = sqlx::query_as::<_, AccountRow>( + "SELECT id, username, email, display_name, role, status, totp_enabled, last_login_at, created_at + FROM accounts WHERE role = $1 AND status = $2 + ORDER BY created_at DESC LIMIT $3 OFFSET $4" + ).bind(role).bind(status).bind(page_size as i64).bind(offset as i64).fetch_all(db).await?; + (total, rows) + } + // role + search + (Some(role), None, Some(search)) => { + let pattern = format!("%{}%", search); + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM accounts WHERE role = $1 AND (username LIKE $2 OR email LIKE $2 OR display_name LIKE $2)" + ).bind(role).bind(&pattern).fetch_one(db).await?; + let rows = sqlx::query_as::<_, AccountRow>( + "SELECT id, username, email, display_name, role, status, totp_enabled, last_login_at, created_at + FROM accounts WHERE role = $1 AND (username LIKE $2 OR email LIKE $2 OR display_name LIKE $2) + ORDER BY created_at DESC LIMIT $3 OFFSET $4" + ).bind(role).bind(&pattern).bind(page_size as i64).bind(offset as i64).fetch_all(db).await?; + (total, rows) + } + // status + search + (None, Some(status), Some(search)) => { + let pattern = format!("%{}%", search); + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM accounts WHERE status = $1 AND (username LIKE $2 OR email LIKE $2 OR display_name LIKE $2)" + ).bind(status).bind(&pattern).fetch_one(db).await?; + let rows = sqlx::query_as::<_, AccountRow>( + "SELECT id, username, email, display_name, role, status, totp_enabled, last_login_at, created_at + FROM accounts WHERE status = $1 AND (username LIKE $2 OR email LIKE $2 OR display_name LIKE $2) + ORDER BY created_at DESC LIMIT $3 OFFSET $4" + ).bind(status).bind(&pattern).bind(page_size as i64).bind(offset as i64).fetch_all(db).await?; + (total, rows) + } + // role only + (Some(role), None, None) => { + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM accounts WHERE role = $1" + ).bind(role).fetch_one(db).await?; + let rows = sqlx::query_as::<_, AccountRow>( + "SELECT id, username, email, display_name, role, status, totp_enabled, last_login_at, created_at + FROM accounts WHERE role = $1 + ORDER BY created_at DESC LIMIT $2 OFFSET $3" + ).bind(role).bind(page_size as i64).bind(offset as i64).fetch_all(db).await?; + (total, rows) + } + // status only + (None, Some(status), None) => { + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM accounts WHERE status = $1" + ).bind(status).fetch_one(db).await?; + let rows = sqlx::query_as::<_, AccountRow>( + "SELECT id, username, email, display_name, role, status, totp_enabled, last_login_at, created_at + FROM accounts WHERE status = $1 + ORDER BY created_at DESC LIMIT $2 OFFSET $3" + ).bind(status).bind(page_size as i64).bind(offset as i64).fetch_all(db).await?; + (total, rows) + } + // search only + (None, None, Some(search)) => { + let pattern = format!("%{}%", search); + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM accounts WHERE (username LIKE $1 OR email LIKE $1 OR display_name LIKE $1)" + ).bind(&pattern).fetch_one(db).await?; + let rows = sqlx::query_as::<_, AccountRow>( + "SELECT id, username, email, display_name, role, status, totp_enabled, last_login_at, created_at + FROM accounts WHERE (username LIKE $1 OR email LIKE $1 OR display_name LIKE $1) + ORDER BY created_at DESC LIMIT $2 OFFSET $3" + ).bind(&pattern).bind(page_size as i64).bind(offset as i64).fetch_all(db).await?; + (total, rows) + } + // no filter + (None, None, None) => { + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM accounts" + ).fetch_one(db).await?; + let rows = sqlx::query_as::<_, AccountRow>( + "SELECT id, username, email, display_name, role, status, totp_enabled, last_login_at, created_at + FROM accounts ORDER BY created_at DESC LIMIT $1 OFFSET $2" + ).bind(page_size as i64).bind(offset as i64).fetch_all(db).await?; + (total, rows) + } }; - let count_sql = format!("SELECT COUNT(*) as count FROM accounts {}", where_sql); - let mut count_query = sqlx::query_scalar::<_, i64>(&count_sql); - for p in ¶ms { - count_query = count_query.bind(p); - } - let total: i64 = count_query.fetch_one(db).await?; - - let limit_idx = param_idx; - let offset_idx = param_idx + 1; - let data_sql = format!( - "SELECT id, username, email, display_name, role, status, totp_enabled, last_login_at, created_at - FROM accounts {} ORDER BY created_at DESC LIMIT ${} OFFSET ${}", - where_sql, limit_idx, offset_idx - ); - let mut data_query = sqlx::query_as::<_, AccountRow>(&data_sql); - for p in ¶ms { - data_query = data_query.bind(p); - } - let rows = data_query.bind(page_size as i64).bind(offset as i64).fetch_all(db).await?; - let items: Vec = rows .into_iter() .map(|r| { @@ -102,30 +156,26 @@ pub async fn update_account( req: &UpdateAccountRequest, ) -> SaasResult { let now = chrono::Utc::now().to_rfc3339(); - let mut updates = Vec::new(); - let mut params: Vec = Vec::new(); - let mut param_idx = 1usize; - if let Some(ref v) = req.display_name { updates.push(format!("display_name = ${}", param_idx)); param_idx += 1; params.push(v.clone()); } - if let Some(ref v) = req.email { updates.push(format!("email = ${}", param_idx)); param_idx += 1; params.push(v.clone()); } - if let Some(ref v) = req.role { updates.push(format!("role = ${}", param_idx)); param_idx += 1; params.push(v.clone()); } - if let Some(ref v) = req.avatar_url { updates.push(format!("avatar_url = ${}", param_idx)); param_idx += 1; params.push(v.clone()); } + // COALESCE pattern: all updatable fields in a single static SQL. + // NULL parameters leave the column unchanged. + sqlx::query( + "UPDATE accounts SET + display_name = COALESCE($1, display_name), + email = COALESCE($2, email), + role = COALESCE($3, role), + avatar_url = COALESCE($4, avatar_url), + updated_at = $5 + WHERE id = $6" + ) + .bind(req.display_name.as_deref()) + .bind(req.email.as_deref()) + .bind(req.role.as_deref()) + .bind(req.avatar_url.as_deref()) + .bind(&now) + .bind(account_id) + .execute(db).await?; - if updates.is_empty() { - return get_account(db, account_id).await; - } - - updates.push(format!("updated_at = ${}", param_idx)); - param_idx += 1; - params.push(now.clone()); - params.push(account_id.to_string()); - - let sql = format!("UPDATE accounts SET {} WHERE id = ${}", updates.join(", "), param_idx); - let mut query = sqlx::query(&sql); - for p in ¶ms { - query = query.bind(p); - } - query.execute(db).await?; get_account(db, account_id).await } diff --git a/crates/zclaw-saas/src/agent_template/service.rs b/crates/zclaw-saas/src/agent_template/service.rs index d41f0a2..555014d 100644 --- a/crates/zclaw-saas/src/agent_template/service.rs +++ b/crates/zclaw-saas/src/agent_template/service.rs @@ -17,6 +17,9 @@ fn row_to_template( } } +/// Row type for agent_template queries (avoids multi-line turbofish parsing issues) +type AgentTemplateRow = (String, String, Option, String, String, Option, Option, String, String, Option, Option, String, String, i32, String, String); + /// 创建 Agent 模板 pub async fn create_template( db: &PgPool, @@ -58,7 +61,7 @@ pub async fn create_template( /// 获取单个模板 pub async fn get_template(db: &PgPool, id: &str) -> SaasResult { - let row: Option<_> = sqlx::query_as( + let row: Option = sqlx::query_as( "SELECT id, name, description, category, source, model, system_prompt, tools, capabilities, temperature, max_tokens, visibility, status, current_version, created_at, updated_at @@ -70,7 +73,8 @@ pub async fn get_template(db: &PgPool, id: &str) -> SaasResult = vec!["1=1".to_string()]; - let mut param_idx = 1u32; - let mut cat_bind: Option = None; - let mut src_bind: Option = None; - let mut vis_bind: Option = None; - let mut st_bind: Option = None; - - if let Some(ref cat) = query.category { - param_idx += 1; - conditions.push(format!("category = ${}", param_idx)); - cat_bind = Some(cat.clone()); - } - if let Some(ref src) = query.source { - param_idx += 1; - conditions.push(format!("source = ${}", param_idx)); - src_bind = Some(src.clone()); - } - if let Some(ref vis) = query.visibility { - param_idx += 1; - conditions.push(format!("visibility = ${}", param_idx)); - vis_bind = Some(vis.clone()); - } - if let Some(ref st) = query.status { - param_idx += 1; - conditions.push(format!("status = ${}", param_idx)); - st_bind = Some(st.clone()); - } - - let where_clause = conditions.join(" AND "); - - // COUNT 查询: WHERE 参数绑定 ($1..$N) - let count_idx = param_idx; - let count_sql = format!( - "SELECT COUNT(*) FROM agent_templates WHERE {}", - where_clause - ); - let count_limit_idx = count_idx + 1; - let count_offset_idx = count_limit_idx + 1; - let data_sql = format!( - "SELECT id, name, description, category, source, model, system_prompt, + let count_sql = "SELECT COUNT(*) FROM agent_templates WHERE ($1 IS NULL OR category = $1) AND ($2 IS NULL OR source = $2) AND ($3 IS NULL OR visibility = $3) AND ($4 IS NULL OR status = $4)"; + let data_sql = "SELECT id, name, description, category, source, model, system_prompt, tools, capabilities, temperature, max_tokens, visibility, status, current_version, created_at, updated_at - FROM agent_templates WHERE {} ORDER BY created_at DESC LIMIT ${} OFFSET ${}", - where_clause, count_limit_idx, count_offset_idx - ); + FROM agent_templates WHERE ($1 IS NULL OR category = $1) AND ($2 IS NULL OR source = $2) AND ($3 IS NULL OR visibility = $3) AND ($4 IS NULL OR status = $4) ORDER BY created_at DESC LIMIT $5 OFFSET $6"; - // 构建 COUNT 查询并绑定参数 - let mut count_q = sqlx::query_scalar::<_, i64>(&count_sql); - if let Some(ref v) = cat_bind { count_q = count_q.bind(v); } - if let Some(ref v) = src_bind { count_q = count_q.bind(v); } - if let Some(ref v) = vis_bind { count_q = count_q.bind(v); } - if let Some(ref v) = st_bind { count_q = count_q.bind(v); } - let total: i64 = count_q.fetch_one(db).await?; + let total: i64 = sqlx::query_scalar(count_sql) + .bind(&query.category) + .bind(&query.source) + .bind(&query.visibility) + .bind(&query.status) + .fetch_one(db).await?; - // 构建数据查询并绑定参数 - let mut data_q = sqlx::query_as::<_, ( - String, String, Option, String, String, Option, Option, - String, String, Option, Option, String, String, i32, String, String - )>(&data_sql); - if let Some(ref v) = cat_bind { data_q = data_q.bind(v); } - if let Some(ref v) = src_bind { data_q = data_q.bind(v); } - if let Some(ref v) = vis_bind { data_q = data_q.bind(v); } - if let Some(ref v) = st_bind { data_q = data_q.bind(v); } - data_q = data_q.bind(page_size as i64).bind(offset); - - let rows = data_q.fetch_all(db).await?; + let rows: Vec = sqlx::query_as(data_sql) + .bind(&query.category) + .bind(&query.source) + .bind(&query.visibility) + .bind(&query.status) + .bind(page_size as i64) + .bind(offset) + .fetch_all(db).await?; let items = rows.into_iter().map(row_to_template).collect(); Ok(crate::common::PaginatedResponse { items, total, page, page_size }) } /// 更新模板 -/// 使用动态参数化查询,安全拼接 SET 子句。 +/// COALESCE pattern: all updatable fields in a single static SQL. +/// NULL parameters leave the column unchanged. pub async fn update_template( db: &PgPool, id: &str, @@ -166,102 +125,41 @@ pub async fn update_template( visibility: Option<&str>, status: Option<&str>, ) -> SaasResult { - // 确认存在 + // Confirm existence get_template(db, id).await?; let now = chrono::Utc::now().to_rfc3339(); - let mut set_clauses: Vec = vec![]; - let mut param_idx = 1u32; - // 收集需要绑定的值(按顺序) - let mut desc_val: Option = None; - let mut model_val: Option = None; - let mut sp_val: Option = None; - let mut tools_val: Option = None; - let mut caps_val: Option = None; - let mut temp_val: Option = None; - let mut mt_val: Option = None; - let mut vis_val: Option = None; - let mut st_val: Option = None; + // Serialize JSON fields upfront so we can bind Option<&str> consistently + let tools_json = tools.map(|t| serde_json::to_string(t).unwrap_or_else(|_| "[]".to_string())); + let caps_json = capabilities.map(|c| serde_json::to_string(c).unwrap_or_else(|_| "[]".to_string())); - if let Some(desc) = description { - param_idx += 1; - set_clauses.push(format!("description = ${}", param_idx)); - desc_val = Some(desc.to_string()); - } - if let Some(m) = model { - param_idx += 1; - set_clauses.push(format!("model = ${}", param_idx)); - model_val = Some(m.to_string()); - } - if let Some(sp) = system_prompt { - param_idx += 1; - set_clauses.push(format!("system_prompt = ${}", param_idx)); - sp_val = Some(sp.to_string()); - } - if let Some(t) = tools { - let json = serde_json::to_string(t).unwrap_or_else(|_| "[]".to_string()); - param_idx += 1; - set_clauses.push(format!("tools = ${}", param_idx)); - tools_val = Some(json); - } - if let Some(c) = capabilities { - let json = serde_json::to_string(c).unwrap_or_else(|_| "[]".to_string()); - param_idx += 1; - set_clauses.push(format!("capabilities = ${}", param_idx)); - caps_val = Some(json); - } - if let Some(t) = temperature { - param_idx += 1; - set_clauses.push(format!("temperature = ${}", param_idx)); - temp_val = Some(t); - } - if let Some(m) = max_tokens { - param_idx += 1; - set_clauses.push(format!("max_tokens = ${}", param_idx)); - mt_val = Some(m); - } - if let Some(v) = visibility { - param_idx += 1; - set_clauses.push(format!("visibility = ${}", param_idx)); - vis_val = Some(v.to_string()); - } - if let Some(s) = status { - param_idx += 1; - set_clauses.push(format!("status = ${}", param_idx)); - st_val = Some(s.to_string()); - } - - if set_clauses.is_empty() { - return get_template(db, id).await; - } - - // updated_at - param_idx += 1; - set_clauses.push(format!("updated_at = ${}", param_idx)); - - // WHERE id = $N - let id_idx = param_idx + 1; - - let sql = format!( - "UPDATE agent_templates SET {} WHERE id = ${}", - set_clauses.join(", "), id_idx - ); - - let mut q = sqlx::query(&sql); - if let Some(ref v) = desc_val { q = q.bind(v); } - if let Some(ref v) = model_val { q = q.bind(v); } - if let Some(ref v) = sp_val { q = q.bind(v); } - if let Some(ref v) = tools_val { q = q.bind(v); } - if let Some(ref v) = caps_val { q = q.bind(v); } - if let Some(v) = temp_val { q = q.bind(v); } - if let Some(v) = mt_val { q = q.bind(v); } - if let Some(ref v) = vis_val { q = q.bind(v); } - if let Some(ref v) = st_val { q = q.bind(v); } - q = q.bind(&now); - q = q.bind(id); - - q.execute(db).await?; + sqlx::query( + "UPDATE agent_templates SET + description = COALESCE($1, description), + model = COALESCE($2, model), + system_prompt = COALESCE($3, system_prompt), + tools = COALESCE($4, tools), + capabilities = COALESCE($5, capabilities), + temperature = COALESCE($6, temperature), + max_tokens = COALESCE($7, max_tokens), + visibility = COALESCE($8, visibility), + status = COALESCE($9, status), + updated_at = $10 + WHERE id = $11" + ) + .bind(description) + .bind(model) + .bind(system_prompt) + .bind(tools_json.as_deref()) + .bind(caps_json.as_deref()) + .bind(temperature) + .bind(max_tokens) + .bind(visibility) + .bind(status) + .bind(&now) + .bind(id) + .execute(db).await?; get_template(db, id).await } diff --git a/crates/zclaw-saas/src/auth/handlers.rs b/crates/zclaw-saas/src/auth/handlers.rs index 97772b6..631fcdc 100644 --- a/crates/zclaw-saas/src/auth/handlers.rs +++ b/crates/zclaw-saas/src/auth/handlers.rs @@ -8,7 +8,7 @@ use crate::error::{SaasError, SaasResult}; use crate::models::{AccountAuthRow, AccountLoginRow}; use super::{ jwt::{create_token, create_refresh_token, verify_token, verify_token_skip_expiry}, - password::{hash_password, verify_password}, + password::{hash_password_async, verify_password_async}, types::{AuthContext, LoginRequest, LoginResponse, RegisterRequest, ChangePasswordRequest, AccountPublic, RefreshRequest}, }; @@ -25,7 +25,8 @@ pub async fn register( if req.username.len() > 32 { return Err(SaasError::InvalidInput("用户名最多 32 个字符".into())); } - let username_re = regex::Regex::new(r"^[a-zA-Z0-9_-]+$").unwrap(); + static USERNAME_RE: std::sync::OnceLock = std::sync::OnceLock::new(); + let username_re = USERNAME_RE.get_or_init(|| regex::Regex::new(r"^[a-zA-Z0-9_-]+$").unwrap()); if !username_re.is_match(&req.username) { return Err(SaasError::InvalidInput("用户名只能包含字母、数字、下划线和连字符".into())); } @@ -56,7 +57,7 @@ pub async fn register( return Err(SaasError::AlreadyExists("用户名或邮箱已存在".into())); } - let password_hash = hash_password(&req.password)?; + let password_hash = hash_password_async(req.password.clone()).await?; let account_id = uuid::Uuid::new_v4().to_string(); let role = "user".to_string(); // 注册固定为普通用户,角色由管理员分配 let display_name = req.display_name.unwrap_or_default(); @@ -138,7 +139,7 @@ pub async fn login( return Err(SaasError::Forbidden(format!("账号已{},请联系管理员", r.status))); } - if !verify_password(&req.password, &r.password_hash)? { + if !verify_password_async(req.password.clone(), r.password_hash.clone()).await? { return Err(SaasError::AuthError("用户名或密码错误".into())); } @@ -328,12 +329,12 @@ pub async fn change_password( .await?; // 验证旧密码 - if !verify_password(&req.old_password, &password_hash)? { + if !verify_password_async(req.old_password.clone(), password_hash.clone()).await? { return Err(SaasError::AuthError("旧密码错误".into())); } // 更新密码 - let new_hash = hash_password(&req.new_password)?; + let new_hash = hash_password_async(req.new_password.clone()).await?; let now = chrono::Utc::now().to_rfc3339(); sqlx::query("UPDATE accounts SET password_hash = $1, updated_at = $2 WHERE id = $3") .bind(&new_hash) diff --git a/crates/zclaw-saas/src/auth/password.rs b/crates/zclaw-saas/src/auth/password.rs index be650cc..fe66db2 100644 --- a/crates/zclaw-saas/src/auth/password.rs +++ b/crates/zclaw-saas/src/auth/password.rs @@ -1,4 +1,8 @@ //! 密码哈希 (Argon2id) +//! +//! Argon2 是 CPU 密集型操作(~100-500ms),不能在 tokio worker 线程上直接执行, +//! 否则会阻塞整个异步运行时。所有 async 上下文必须使用 `hash_password_async` +//! 和 `verify_password_async`。 use argon2::{ password_hash::{rand_core::OsRng, PasswordHash, PasswordHasher, PasswordVerifier, SaltString}, @@ -7,7 +11,7 @@ use argon2::{ use crate::error::{SaasError, SaasResult}; -/// 哈希密码 +/// 哈希密码(同步版本,仅用于测试和启动时 seed) pub fn hash_password(password: &str) -> SaasResult { let salt = SaltString::generate(&mut OsRng); let argon2 = Argon2::default(); @@ -17,7 +21,7 @@ pub fn hash_password(password: &str) -> SaasResult { Ok(hash.to_string()) } -/// 验证密码 +/// 验证密码(同步版本,仅用于测试) pub fn verify_password(password: &str, hash: &str) -> SaasResult { let parsed_hash = PasswordHash::new(hash) .map_err(|e| SaasError::PasswordHash(e.to_string()))?; @@ -26,6 +30,20 @@ pub fn verify_password(password: &str, hash: &str) -> SaasResult { .is_ok()) } +/// 异步哈希密码 — 在 spawn_blocking 线程池中执行 Argon2 +pub async fn hash_password_async(password: String) -> SaasResult { + tokio::task::spawn_blocking(move || hash_password(&password)) + .await + .map_err(|e| SaasError::Internal(format!("spawn_blocking error: {e}")))? +} + +/// 异步验证密码 — 在 spawn_blocking 线程池中执行 Argon2 +pub async fn verify_password_async(password: String, hash: String) -> SaasResult { + tokio::task::spawn_blocking(move || verify_password(&password, &hash)) + .await + .map_err(|e| SaasError::Internal(format!("spawn_blocking error: {e}")))? +} + #[cfg(test)] mod tests { use super::*; diff --git a/crates/zclaw-saas/src/auth/totp.rs b/crates/zclaw-saas/src/auth/totp.rs index 7aa46a5..75cda66 100644 --- a/crates/zclaw-saas/src/auth/totp.rs +++ b/crates/zclaw-saas/src/auth/totp.rs @@ -212,7 +212,7 @@ pub async fn disable_totp( .fetch_one(&state.db) .await?; - if !crate::auth::password::verify_password(&req.password, &password_hash)? { + if !crate::auth::password::verify_password_async(req.password.clone(), password_hash.clone()).await? { return Err(SaasError::AuthError("密码错误".into())); } diff --git a/crates/zclaw-saas/src/db.rs b/crates/zclaw-saas/src/db.rs index 7344daa..85337ce 100644 --- a/crates/zclaw-saas/src/db.rs +++ b/crates/zclaw-saas/src/db.rs @@ -150,11 +150,10 @@ pub async fn seed_admin_account(pool: &PgPool) -> SaasResult<()> { .await?; if let Some((account_id,)) = existing { - // 更新现有用户的密码和角色 - use crate::auth::password::hash_password; - let password_hash = hash_password(&admin_password)?; + // 更新现有用户的密码和角色(使用 spawn_blocking 避免阻塞 tokio 运行时) + let password_hash = crate::auth::password::hash_password_async(admin_password.clone()).await?; let now = chrono::Utc::now().to_rfc3339(); - + sqlx::query( "UPDATE accounts SET password_hash = $1, role = 'super_admin', updated_at = $2 WHERE id = $3" ) @@ -163,12 +162,11 @@ pub async fn seed_admin_account(pool: &PgPool) -> SaasResult<()> { .bind(&account_id) .execute(pool) .await?; - + tracing::info!("已更新用户 {} 的密码和角色为 super_admin", admin_username); } else { // 创建新的 super_admin 账号 - use crate::auth::password::hash_password; - let password_hash = hash_password(&admin_password)?; + let password_hash = crate::auth::password::hash_password_async(admin_password.clone()).await?; let account_id = uuid::Uuid::new_v4().to_string(); let email = format!("{}@zclaw.local", admin_username); let now = chrono::Utc::now().to_rfc3339(); diff --git a/crates/zclaw-saas/src/migration/service.rs b/crates/zclaw-saas/src/migration/service.rs index d43131f..62f0713 100644 --- a/crates/zclaw-saas/src/migration/service.rs +++ b/crates/zclaw-saas/src/migration/service.rs @@ -54,39 +54,50 @@ pub async fn list_config_items( ) -> SaasResult> { let (p, ps, offset) = normalize_pagination(page, page_size); - // Build WHERE clause for count and data queries - let (where_clause, has_category, has_source) = match (&query.category, &query.source) { - (Some(_), Some(_)) => ("WHERE category = $1 AND source = $2", true, true), - (Some(_), None) => ("WHERE category = $1", true, false), - (None, Some(_)) => ("WHERE source = $1", false, true), - (None, None) => ("", false, false), + // Static SQL per combination -- no format!() string interpolation + let (total, rows) = match (&query.category, &query.source) { + (Some(cat), Some(src)) => { + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM config_items WHERE category = $1 AND source = $2" + ).bind(cat).bind(src).fetch_one(db).await?; + let rows = sqlx::query_as::<_, ConfigItemRow>( + "SELECT id, category, key_path, value_type, current_value, default_value, source, description, requires_restart, created_at, updated_at + FROM config_items WHERE category = $1 AND source = $2 ORDER BY category, key_path LIMIT $3 OFFSET $4" + ).bind(cat).bind(src).bind(ps as i64).bind(offset).fetch_all(db).await?; + (total, rows) + } + (Some(cat), None) => { + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM config_items WHERE category = $1" + ).bind(cat).fetch_one(db).await?; + let rows = sqlx::query_as::<_, ConfigItemRow>( + "SELECT id, category, key_path, value_type, current_value, default_value, source, description, requires_restart, created_at, updated_at + FROM config_items WHERE category = $1 ORDER BY category, key_path LIMIT $2 OFFSET $3" + ).bind(cat).bind(ps as i64).bind(offset).fetch_all(db).await?; + (total, rows) + } + (None, Some(src)) => { + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM config_items WHERE source = $1" + ).bind(src).fetch_one(db).await?; + let rows = sqlx::query_as::<_, ConfigItemRow>( + "SELECT id, category, key_path, value_type, current_value, default_value, source, description, requires_restart, created_at, updated_at + FROM config_items WHERE source = $1 ORDER BY category, key_path LIMIT $2 OFFSET $3" + ).bind(src).bind(ps as i64).bind(offset).fetch_all(db).await?; + (total, rows) + } + (None, None) => { + let total: i64 = sqlx::query_scalar( + "SELECT COUNT(*) FROM config_items" + ).fetch_one(db).await?; + let rows = sqlx::query_as::<_, ConfigItemRow>( + "SELECT id, category, key_path, value_type, current_value, default_value, source, description, requires_restart, created_at, updated_at + FROM config_items ORDER BY category, key_path LIMIT $1 OFFSET $2" + ).bind(ps as i64).bind(offset).fetch_all(db).await?; + (total, rows) + } }; - let count_sql = format!("SELECT COUNT(*) FROM config_items {}", where_clause); - let data_sql = format!( - "SELECT id, category, key_path, value_type, current_value, default_value, source, description, requires_restart, created_at, updated_at - FROM config_items {} ORDER BY category, key_path LIMIT {} OFFSET {}", - where_clause, "$p", "$o" - ); - - // Determine param indices for LIMIT/OFFSET based on filter params - let (limit_idx, offset_idx) = match (has_category, has_source) { - (true, true) => ("$3", "$4"), - (true, false) | (false, true) => ("$2", "$3"), - (false, false) => ("$1", "$2"), - }; - let data_sql = data_sql.replace("$p", limit_idx).replace("$o", offset_idx); - - let mut count_query = sqlx::query_scalar::<_, i64>(&count_sql); - if has_category { count_query = count_query.bind(&query.category); } - if has_source { count_query = count_query.bind(&query.source); } - let total: i64 = count_query.fetch_one(db).await?; - - let mut data_query = sqlx::query_as::<_, ConfigItemRow>(&data_sql); - if has_category { data_query = data_query.bind(&query.category); } - if has_source { data_query = data_query.bind(&query.source); } - let rows = data_query.bind(ps as i64).bind(offset).fetch_all(db).await?; - let items = rows.into_iter().map(|r| { ConfigItemInfo { id: r.id, category: r.category, key_path: r.key_path, value_type: r.value_type, current_value: r.current_value, default_value: r.default_value, source: r.source, description: r.description, requires_restart: r.requires_restart, created_at: r.created_at, updated_at: r.updated_at } }).collect(); @@ -146,29 +157,23 @@ pub async fn update_config_item( db: &PgPool, item_id: &str, req: &UpdateConfigItemRequest, ) -> SaasResult { let now = chrono::Utc::now().to_rfc3339(); - let mut updates = Vec::new(); - let mut params: Vec = Vec::new(); - let mut param_idx = 1usize; - if let Some(ref v) = req.current_value { updates.push(format!("current_value = ${}", param_idx)); params.push(v.clone()); param_idx += 1; } - if let Some(ref v) = req.source { updates.push(format!("source = ${}", param_idx)); params.push(v.clone()); param_idx += 1; } - if let Some(ref v) = req.description { updates.push(format!("description = ${}", param_idx)); params.push(v.clone()); param_idx += 1; } - - if updates.is_empty() { - return get_config_item(db, item_id).await; - } - - updates.push(format!("updated_at = ${}", param_idx)); - params.push(now); - param_idx += 1; - params.push(item_id.to_string()); - - let sql = format!("UPDATE config_items SET {} WHERE id = ${}", updates.join(", "), param_idx); - let mut query = sqlx::query(&sql); - for p in ¶ms { - query = query.bind(p); - } - query.execute(db).await?; + // COALESCE pattern: all updatable fields in a single static SQL. + // NULL parameters leave the column unchanged. + sqlx::query( + "UPDATE config_items SET + current_value = COALESCE($1, current_value), + source = COALESCE($2, source), + description = COALESCE($3, description), + updated_at = $4 + WHERE id = $5" + ) + .bind(req.current_value.as_deref()) + .bind(req.source.as_deref()) + .bind(req.description.as_deref()) + .bind(&now) + .bind(item_id) + .execute(db).await?; get_config_item(db, item_id).await } diff --git a/crates/zclaw-saas/src/model_config/service.rs b/crates/zclaw-saas/src/model_config/service.rs index fdb8972..28a03d3 100644 --- a/crates/zclaw-saas/src/model_config/service.rs +++ b/crates/zclaw-saas/src/model_config/service.rs @@ -104,36 +104,38 @@ pub async fn update_provider( db: &PgPool, provider_id: &str, req: &UpdateProviderRequest, enc_key: &[u8; 32], ) -> SaasResult { let now = chrono::Utc::now().to_rfc3339(); - let mut updates = Vec::new(); - let mut params: Vec> = Vec::new(); - let mut param_idx = 1; - if let Some(ref v) = req.display_name { updates.push(format!("display_name = ${}", param_idx)); params.push(Box::new(v.clone())); param_idx += 1; } - if let Some(ref v) = req.base_url { updates.push(format!("base_url = ${}", param_idx)); params.push(Box::new(v.clone())); param_idx += 1; } - if let Some(ref v) = req.api_protocol { updates.push(format!("api_protocol = ${}", param_idx)); params.push(Box::new(v.clone())); param_idx += 1; } - if let Some(ref v) = req.api_key { - let encrypted = if v.is_empty() { String::new() } else { crypto::encrypt_value(v, enc_key)? }; - updates.push(format!("api_key = ${}", param_idx)); params.push(Box::new(encrypted)); param_idx += 1; - } - if let Some(v) = req.enabled { updates.push(format!("enabled = ${}", param_idx)); params.push(Box::new(v)); param_idx += 1; } - if let Some(v) = req.rate_limit_rpm { updates.push(format!("rate_limit_rpm = ${}", param_idx)); params.push(Box::new(v)); param_idx += 1; } - if let Some(v) = req.rate_limit_tpm { updates.push(format!("rate_limit_tpm = ${}", param_idx)); params.push(Box::new(v)); param_idx += 1; } + // Encrypt api_key upfront if provided + let encrypted_api_key = match req.api_key { + Some(ref v) if !v.is_empty() => Some(crypto::encrypt_value(v, enc_key)?), + Some(ref v) if v.is_empty() => Some(String::new()), + _ => None, + }; - if updates.is_empty() { - return get_provider(db, provider_id).await; - } - - updates.push(format!("updated_at = ${}", param_idx)); - params.push(Box::new(now.clone())); - param_idx += 1; - params.push(Box::new(provider_id.to_string())); - - let sql = format!("UPDATE providers SET {} WHERE id = ${}", updates.join(", "), param_idx); - let mut query = sqlx::query(&sql); - for p in ¶ms { - query = query.bind(format!("{}", p)); - } - query.execute(db).await?; + // COALESCE pattern: all updatable fields in a single static SQL. + // NULL parameters leave the column unchanged. + sqlx::query( + "UPDATE providers SET + display_name = COALESCE($1, display_name), + base_url = COALESCE($2, base_url), + api_protocol = COALESCE($3, api_protocol), + api_key = COALESCE($4, api_key), + enabled = COALESCE($5, enabled), + rate_limit_rpm = COALESCE($6, rate_limit_rpm), + rate_limit_tpm = COALESCE($7, rate_limit_tpm), + updated_at = $8 + WHERE id = $9" + ) + .bind(req.display_name.as_deref()) + .bind(req.base_url.as_deref()) + .bind(req.api_protocol.as_deref()) + .bind(encrypted_api_key.as_deref()) + .bind(req.enabled) + .bind(req.rate_limit_rpm) + .bind(req.rate_limit_tpm) + .bind(&now) + .bind(provider_id) + .execute(db).await?; get_provider(db, provider_id).await } @@ -245,34 +247,33 @@ pub async fn update_model( db: &PgPool, model_id: &str, req: &UpdateModelRequest, ) -> SaasResult { let now = chrono::Utc::now().to_rfc3339(); - let mut updates = Vec::new(); - let mut params: Vec> = Vec::new(); - let mut param_idx = 1; - if let Some(ref v) = req.alias { updates.push(format!("alias = ${}", param_idx)); params.push(Box::new(v.clone())); param_idx += 1; } - if let Some(v) = req.context_window { updates.push(format!("context_window = ${}", param_idx)); params.push(Box::new(v)); param_idx += 1; } - if let Some(v) = req.max_output_tokens { updates.push(format!("max_output_tokens = ${}", param_idx)); params.push(Box::new(v)); param_idx += 1; } - if let Some(v) = req.supports_streaming { updates.push(format!("supports_streaming = ${}", param_idx)); params.push(Box::new(v)); param_idx += 1; } - if let Some(v) = req.supports_vision { updates.push(format!("supports_vision = ${}", param_idx)); params.push(Box::new(v)); param_idx += 1; } - if let Some(v) = req.enabled { updates.push(format!("enabled = ${}", param_idx)); params.push(Box::new(v)); param_idx += 1; } - if let Some(v) = req.pricing_input { updates.push(format!("pricing_input = ${}", param_idx)); params.push(Box::new(v)); param_idx += 1; } - if let Some(v) = req.pricing_output { updates.push(format!("pricing_output = ${}", param_idx)); params.push(Box::new(v)); param_idx += 1; } - - if updates.is_empty() { - return get_model(db, model_id).await; - } - - updates.push(format!("updated_at = ${}", param_idx)); - params.push(Box::new(now.clone())); - param_idx += 1; - params.push(Box::new(model_id.to_string())); - - let sql = format!("UPDATE models SET {} WHERE id = ${}", updates.join(", "), param_idx); - let mut query = sqlx::query(&sql); - for p in ¶ms { - query = query.bind(format!("{}", p)); - } - query.execute(db).await?; + // COALESCE pattern: all updatable fields in a single static SQL. + // NULL parameters leave the column unchanged. + sqlx::query( + "UPDATE models SET + alias = COALESCE($1, alias), + context_window = COALESCE($2, context_window), + max_output_tokens = COALESCE($3, max_output_tokens), + supports_streaming = COALESCE($4, supports_streaming), + supports_vision = COALESCE($5, supports_vision), + enabled = COALESCE($6, enabled), + pricing_input = COALESCE($7, pricing_input), + pricing_output = COALESCE($8, pricing_output), + updated_at = $9 + WHERE id = $10" + ) + .bind(req.alias.as_deref()) + .bind(req.context_window) + .bind(req.max_output_tokens) + .bind(req.supports_streaming) + .bind(req.supports_vision) + .bind(req.enabled) + .bind(req.pricing_input) + .bind(req.pricing_output) + .bind(&now) + .bind(model_id) + .execute(db).await?; get_model(db, model_id).await } @@ -401,58 +402,33 @@ pub async fn revoke_account_api_key( pub async fn get_usage_stats( db: &PgPool, account_id: &str, query: &UsageQuery, ) -> SaasResult { - let mut param_idx = 1; - let mut where_clauses = vec![format!("account_id = ${}", param_idx)]; - let mut params: Vec = vec![account_id.to_string()]; - param_idx += 1; + // Static SQL with conditional filter pattern: + // account_id is always required; optional filters use ($N IS NULL OR col = $N). + let total_sql = "SELECT COUNT(*)::bigint, COALESCE(SUM(input_tokens), 0), COALESCE(SUM(output_tokens), 0) + FROM usage_records WHERE account_id = $1 AND ($2 IS NULL OR created_at >= $2) AND ($3 IS NULL OR created_at <= $3) AND ($4 IS NULL OR provider_id = $4) AND ($5 IS NULL OR model_id = $5)"; - if let Some(ref from) = query.from { - where_clauses.push(format!("created_at >= ${}", param_idx)); - params.push(from.clone()); - param_idx += 1; - } - if let Some(ref to) = query.to { - where_clauses.push(format!("created_at <= ${}", param_idx)); - params.push(to.clone()); - param_idx += 1; - } - if let Some(ref pid) = query.provider_id { - where_clauses.push(format!("provider_id = ${}", param_idx)); - params.push(pid.clone()); - param_idx += 1; - } - if let Some(ref mid) = query.model_id { - where_clauses.push(format!("model_id = ${}", param_idx)); - params.push(mid.clone()); - } - - let where_sql = where_clauses.join(" AND "); - - // 总量统计 - let total_sql = format!( - "SELECT COUNT(*)::bigint, COALESCE(SUM(input_tokens), 0), COALESCE(SUM(output_tokens), 0) - FROM usage_records WHERE {}", where_sql - ); - let mut total_query = sqlx::query(&total_sql); - for p in ¶ms { - total_query = total_query.bind(p); - } - let row = total_query.fetch_one(db).await?; + let row = sqlx::query(total_sql) + .bind(account_id) + .bind(&query.from) + .bind(&query.to) + .bind(&query.provider_id) + .bind(&query.model_id) + .fetch_one(db).await?; let total_requests: i64 = row.try_get(0).unwrap_or(0); let total_input: i64 = row.try_get(1).unwrap_or(0); let total_output: i64 = row.try_get(2).unwrap_or(0); // 按模型统计 - let by_model_sql = format!( - "SELECT provider_id, model_id, COUNT(*)::bigint AS request_count, COALESCE(SUM(input_tokens), 0) AS input_tokens, COALESCE(SUM(output_tokens), 0) AS output_tokens - FROM usage_records WHERE {} GROUP BY provider_id, model_id ORDER BY COUNT(*) DESC LIMIT 20", - where_sql - ); - let mut by_model_query = sqlx::query_as::<_, UsageByModelRow>(&by_model_sql); - for p in ¶ms { - by_model_query = by_model_query.bind(p); - } - let by_model_rows = by_model_query.fetch_all(db).await?; + let by_model_sql = "SELECT provider_id, model_id, COUNT(*)::bigint AS request_count, COALESCE(SUM(input_tokens), 0) AS input_tokens, COALESCE(SUM(output_tokens), 0) AS output_tokens + FROM usage_records WHERE account_id = $1 AND ($2 IS NULL OR created_at >= $2) AND ($3 IS NULL OR created_at <= $3) AND ($4 IS NULL OR provider_id = $4) AND ($5 IS NULL OR model_id = $5) GROUP BY provider_id, model_id ORDER BY COUNT(*) DESC LIMIT 20"; + + let by_model_rows: Vec = sqlx::query_as(by_model_sql) + .bind(account_id) + .bind(&query.from) + .bind(&query.to) + .bind(&query.provider_id) + .bind(&query.model_id) + .fetch_all(db).await?; let by_model: Vec = by_model_rows.into_iter() .map(|r| { ModelUsage { provider_id: r.provider_id, model_id: r.model_id, request_count: r.request_count, input_tokens: r.input_tokens, output_tokens: r.output_tokens } diff --git a/crates/zclaw-saas/src/prompt/service.rs b/crates/zclaw-saas/src/prompt/service.rs index c5cc7a8..24c4c3b 100644 --- a/crates/zclaw-saas/src/prompt/service.rs +++ b/crates/zclaw-saas/src/prompt/service.rs @@ -76,62 +76,30 @@ pub async fn get_template_by_name(db: &PgPool, name: &str) -> SaasResult SaasResult> { let (page, page_size, offset) = normalize_pagination(query.page, query.page_size); - // 使用参数化查询构建,防止 SQL 注入 - let mut param_idx = 1usize; - let mut conditions = Vec::new(); - let mut cat_bind: Option = None; - let mut src_bind: Option = None; - let mut status_bind: Option = None; + let count_sql = "SELECT COUNT(*) FROM prompt_templates WHERE ($1 IS NULL OR category = $1) AND ($2 IS NULL OR source = $2) AND ($3 IS NULL OR status = $3)"; + let data_sql = "SELECT id, name, category, description, source, current_version, status, created_at, updated_at \ + FROM prompt_templates WHERE ($1 IS NULL OR category = $1) AND ($2 IS NULL OR source = $2) AND ($3 IS NULL OR status = $3) ORDER BY updated_at DESC LIMIT $4 OFFSET $5"; - if let Some(ref cat) = query.category { - conditions.push(format!("category = ${}", param_idx)); - cat_bind = Some(cat.clone()); - param_idx += 1; - } - if let Some(ref src) = query.source { - conditions.push(format!("source = ${}", param_idx)); - src_bind = Some(src.clone()); - param_idx += 1; - } - if let Some(ref st) = query.status { - conditions.push(format!("status = ${}", param_idx)); - status_bind = Some(st.clone()); - param_idx += 1; - } + let total: i64 = sqlx::query_scalar(count_sql) + .bind(&query.category) + .bind(&query.source) + .bind(&query.status) + .fetch_one(db).await?; - let where_clause = if conditions.is_empty() { - "1=1".to_string() - } else { - conditions.join(" AND ") - }; - - let count_sql = format!("SELECT COUNT(*) FROM prompt_templates WHERE {}", where_clause); - let data_sql = format!( - "SELECT id, name, category, description, source, current_version, status, created_at, updated_at \ - FROM prompt_templates WHERE {} ORDER BY updated_at DESC LIMIT {} OFFSET {}", - where_clause, page_size, offset - ); - - // 动态绑定参数到 count 查询 - let mut count_query = sqlx::query_scalar::<_, i64>(&count_sql); - if let Some(ref v) = cat_bind { count_query = count_query.bind(v); } - if let Some(ref v) = src_bind { count_query = count_query.bind(v); } - if let Some(ref v) = status_bind { count_query = count_query.bind(v); } - let total = count_query.fetch_one(db).await?; - - // 动态绑定参数到 data 查询 - let mut data_query = sqlx::query_as::<_, PromptTemplateRow>(&data_sql); - if let Some(ref v) = cat_bind { data_query = data_query.bind(v); } - if let Some(ref v) = src_bind { data_query = data_query.bind(v); } - if let Some(ref v) = status_bind { data_query = data_query.bind(v); } - data_query = data_query.bind(page_size as i64).bind(offset as i64); - let rows = data_query.fetch_all(db).await?; + let rows: Vec = sqlx::query_as(data_sql) + .bind(&query.category) + .bind(&query.source) + .bind(&query.status) + .bind(page_size as i64) + .bind(offset as i64) + .fetch_all(db).await?; let items: Vec = rows.into_iter().map(|r| { PromptTemplateInfo { id: r.id, name: r.name, category: r.category, description: r.description, source: r.source, current_version: r.current_version, status: r.status, created_at: r.created_at, updated_at: r.updated_at } diff --git a/crates/zclaw-saas/src/relay/handlers.rs b/crates/zclaw-saas/src/relay/handlers.rs index 1f16960..90e825c 100644 --- a/crates/zclaw-saas/src/relay/handlers.rs +++ b/crates/zclaw-saas/src/relay/handlers.rs @@ -43,12 +43,13 @@ pub async fn chat_completions( } // --- 输入验证 --- - // 请求体大小限制 (1 MB) + // 请求体大小限制 (1 MB) — 直接序列化一次,后续复用 const MAX_BODY_BYTES: usize = 1024 * 1024; - let estimated_size = serde_json::to_string(&req).map(|s| s.len()).unwrap_or(0); - if estimated_size > MAX_BODY_BYTES { + let request_body = serde_json::to_string(&req) + .map_err(|e| SaasError::InvalidInput(format!("请求体序列化失败: {}", e)))?; + if request_body.len() > MAX_BODY_BYTES { return Err(SaasError::InvalidInput( - format!("请求体超过大小限制 ({} bytes > {} bytes)", estimated_size, MAX_BODY_BYTES) + format!("请求体超过大小限制 ({} bytes > {} bytes)", request_body.len(), MAX_BODY_BYTES) )); } @@ -147,7 +148,7 @@ pub async fn chat_completions( return Err(SaasError::Forbidden(format!("Provider {} 已禁用", provider.name))); } - let request_body = serde_json::to_string(&req)?; + // request_body 已在前面序列化并验证大小,直接复用 // 创建中转任务(提取配置后立即释放读锁) let (max_attempts, retry_delay_ms, enc_key) = { diff --git a/crates/zclaw-saas/src/relay/service.rs b/crates/zclaw-saas/src/relay/service.rs index 29bd941..239201d 100644 --- a/crates/zclaw-saas/src/relay/service.rs +++ b/crates/zclaw-saas/src/relay/service.rs @@ -185,10 +185,24 @@ pub async fn execute_relay( let url = format!("{}/chat/completions", provider_base_url.trim_end_matches('/')); - let client = reqwest::Client::builder() - .timeout(std::time::Duration::from_secs(if stream { 300 } else { 30 })) - .build() - .map_err(|e| SaasError::Internal(format!("HTTP 客户端构建失败: {}", e)))?; + // 复用全局 HTTP 客户端,避免每次请求重建 TLS 连接池和 DNS 解析器 + static SHORT_CLIENT: std::sync::OnceLock = std::sync::OnceLock::new(); + static LONG_CLIENT: std::sync::OnceLock = std::sync::OnceLock::new(); + let client = if stream { + LONG_CLIENT.get_or_init(|| { + reqwest::Client::builder() + .timeout(std::time::Duration::from_secs(300)) + .build() + .expect("Failed to build long-timeout HTTP client") + }) + } else { + SHORT_CLIENT.get_or_init(|| { + reqwest::Client::builder() + .timeout(std::time::Duration::from_secs(30)) + .build() + .expect("Failed to build short-timeout HTTP client") + }) + }; let max_attempts = max_attempts.max(1).min(5); diff --git a/desktop/src-tauri/src/intelligence/extraction_adapter.rs b/desktop/src-tauri/src/intelligence/extraction_adapter.rs new file mode 100644 index 0000000..6628b3e --- /dev/null +++ b/desktop/src-tauri/src/intelligence/extraction_adapter.rs @@ -0,0 +1,321 @@ +//! Extraction Adapter - Bridges zclaw_growth::LlmDriverForExtraction with the Kernel's LlmDriver +//! +//! Implements the `LlmDriverForExtraction` trait by delegating to the Kernel's +//! `zclaw_runtime::driver::LlmDriver`, which already handles provider-specific +//! API calls (OpenAI, Anthropic, Gemini, etc.). +//! +//! This enables the Growth system's MemoryExtractor to call the LLM for memory +//! extraction from conversations. + +use std::sync::Arc; +use zclaw_growth::extractor::{LlmDriverForExtraction, prompts}; +use zclaw_growth::types::{ExtractedMemory, MemoryType}; +use zclaw_runtime::driver::{CompletionRequest, ContentBlock, LlmDriver}; +use zclaw_types::{Message, Result, SessionId}; + +/// Adapter that wraps the Kernel's `LlmDriver` to implement `LlmDriverForExtraction`. +/// +/// The adapter translates extraction requests into completion requests that the +/// Kernel's LLM driver can process, then parses the structured JSON response +/// back into `ExtractedMemory` objects. +pub struct TauriExtractionDriver { + driver: Arc, + model: String, +} + +impl TauriExtractionDriver { + /// Create a new extraction driver wrapping the given LLM driver. + /// + /// The `model` parameter specifies which model to use for extraction calls. + pub fn new(driver: Arc, model: String) -> Self { + Self { driver, model } + } + + /// Build a completion request from the extraction prompt and conversation messages. + fn build_request( + &self, + messages: &[Message], + extraction_type: MemoryType, + ) -> CompletionRequest { + let extraction_prompt = prompts::get_extraction_prompt(extraction_type); + + // Format conversation for the prompt + // Message is an enum with variants: User{content}, Assistant{content, thinking}, + // System{content}, ToolUse{...}, ToolResult{...} + let conversation_text = messages + .iter() + .filter_map(|msg| { + match msg { + Message::User { content } => { + Some(format!("[User]: {}", content)) + } + Message::Assistant { content, .. } => { + Some(format!("[Assistant]: {}", content)) + } + Message::System { content } => { + Some(format!("[System]: {}", content)) + } + // Skip tool use/result messages -- not relevant for memory extraction + Message::ToolUse { .. } | Message::ToolResult { .. } => None, + } + }) + .collect::>() + .join("\n\n"); + + let full_prompt = format!("{}{}", extraction_prompt, conversation_text); + + CompletionRequest { + model: self.model.clone(), + system: Some( + "You are a memory extraction assistant. Analyze conversations and extract \ + structured memories in valid JSON format. Always respond with valid JSON only, \ + no additional text or markdown formatting." + .to_string(), + ), + messages: vec![Message::user(full_prompt)], + tools: Vec::new(), + max_tokens: Some(2000), + temperature: Some(0.3), + stop: Vec::new(), + stream: false, + } + } + + /// Parse the LLM response text into a list of extracted memories. + fn parse_response( + &self, + response_text: &str, + extraction_type: MemoryType, + ) -> Vec { + // Strip markdown code fences if present + let cleaned = response_text + .trim() + .trim_start_matches("```json") + .trim_start_matches("```") + .trim_end_matches("```") + .trim(); + + // Extract the JSON array from the response + let json_str = match (cleaned.find('['), cleaned.rfind(']')) { + (Some(start), Some(end)) => &cleaned[start..=end], + _ => { + tracing::warn!( + "[TauriExtractionDriver] No JSON array found in LLM response" + ); + return Vec::new(); + } + }; + + let raw_items: Vec = match serde_json::from_str(json_str) { + Ok(items) => items, + Err(e) => { + tracing::warn!( + "[TauriExtractionDriver] Failed to parse extraction JSON: {}", + e + ); + return Vec::new(); + } + }; + + raw_items + .into_iter() + .filter_map(|item| self.parse_memory_item(&item, extraction_type)) + .collect() + } + + /// Parse a single memory item from JSON. + fn parse_memory_item( + &self, + value: &serde_json::Value, + fallback_type: MemoryType, + ) -> Option { + let content = value.get("content")?.as_str()?.to_string(); + let category = value + .get("category") + .and_then(|v| v.as_str()) + .unwrap_or("unknown") + .to_string(); + + let confidence = value + .get("confidence") + .and_then(|v| v.as_f64()) + .unwrap_or(0.7) as f32; + + let keywords = value + .get("keywords") + .and_then(|v| v.as_array()) + .map(|arr| { + arr.iter() + .filter_map(|v| v.as_str().map(String::from)) + .collect() + }) + .unwrap_or_default(); + + Some( + ExtractedMemory::new(fallback_type, category, content, SessionId::new()) + .with_confidence(confidence) + .with_keywords(keywords), + ) + } +} + +#[async_trait::async_trait] +impl LlmDriverForExtraction for TauriExtractionDriver { + async fn extract_memories( + &self, + messages: &[Message], + extraction_type: MemoryType, + ) -> Result> { + let type_name = format!("{}", extraction_type); + tracing::debug!( + "[TauriExtractionDriver] Extracting {} memories from {} messages", + type_name, + messages.len() + ); + + // Skip extraction if there are too few messages + if messages.len() < 2 { + tracing::debug!( + "[TauriExtractionDriver] Too few messages ({}) for extraction, skipping", + messages.len() + ); + return Ok(Vec::new()); + } + + let request = self.build_request(messages, extraction_type); + + let response = self.driver.complete(request).await.map_err(|e| { + tracing::error!( + "[TauriExtractionDriver] LLM completion failed for {}: {}", + type_name, + e + ); + e + })?; + + // Extract text content from response + let response_text: String = response + .content + .into_iter() + .filter_map(|block| match block { + ContentBlock::Text { text } => Some(text), + _ => None, + }) + .collect::>() + .join(""); + + if response_text.is_empty() { + tracing::warn!( + "[TauriExtractionDriver] Empty response from LLM for {} extraction", + type_name + ); + return Ok(Vec::new()); + } + + let memories = self.parse_response(&response_text, extraction_type); + + tracing::info!( + "[TauriExtractionDriver] Extracted {} {} memories", + memories.len(), + type_name + ); + + Ok(memories) + } +} + +/// Global extraction driver instance (lazy-initialized). +static EXTRACTION_DRIVER: tokio::sync::OnceCell> = + tokio::sync::OnceCell::const_new(); + +/// Configure the global extraction driver. +/// +/// Call this during kernel initialization after the Kernel's LLM driver is available. +pub fn configure_extraction_driver(driver: Arc, model: String) { + let adapter = TauriExtractionDriver::new(driver, model); + let _ = EXTRACTION_DRIVER.set(Arc::new(adapter)); + tracing::info!("[ExtractionAdapter] Extraction driver configured"); +} + +/// Check if the extraction driver is available. +#[allow(dead_code)] +pub fn is_extraction_driver_configured() -> bool { + EXTRACTION_DRIVER.get().is_some() +} + +/// Get the global extraction driver. +/// +/// Returns `None` if not yet configured via `configure_extraction_driver`. +pub fn get_extraction_driver() -> Option> { + EXTRACTION_DRIVER.get().cloned() +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn test_extraction_driver_not_configured_by_default() { + assert!(!is_extraction_driver_configured()); + } + + #[test] + fn test_parse_empty_response() { + // We cannot create a real LlmDriver easily in tests, so we test the + // parsing logic via a minimal helper. + struct DummyDriver; + impl TauriExtractionDriver { + fn parse_response_test( + &self, + response_text: &str, + extraction_type: MemoryType, + ) -> Vec { + self.parse_response(response_text, extraction_type) + } + } + } + + #[test] + fn test_parse_valid_json_response() { + let response = r#"```json + [ + { + "category": "communication-style", + "content": "User prefers concise replies", + "confidence": 0.9, + "keywords": ["concise", "style"] + }, + { + "category": "language", + "content": "User prefers Chinese responses", + "confidence": 0.85, + "keywords": ["Chinese", "language"] + } + ] + ```"#; + + // Verify the parsing logic works by manually simulating it + let cleaned = response + .trim() + .trim_start_matches("```json") + .trim_start_matches("```") + .trim_end_matches("```") + .trim(); + + let json_str = &cleaned[cleaned.find('[').unwrap()..=cleaned.rfind(']').unwrap()]; + let items: Vec = serde_json::from_str(json_str).unwrap(); + assert_eq!(items.len(), 2); + assert_eq!( + items[0].get("category").unwrap().as_str().unwrap(), + "communication-style" + ); + } + + #[test] + fn test_parse_no_json_array() { + let response = "No memories could be extracted from this conversation."; + let has_array = + response.find('[').is_some() && response.rfind(']').is_some(); + assert!(!has_array); + } +} diff --git a/desktop/src-tauri/src/intelligence/mod.rs b/desktop/src-tauri/src/intelligence/mod.rs index b3fa6ca..32adcd7 100644 --- a/desktop/src-tauri/src/intelligence/mod.rs +++ b/desktop/src-tauri/src/intelligence/mod.rs @@ -31,6 +31,7 @@ pub mod compactor; pub mod reflection; pub mod identity; pub mod validation; +pub mod extraction_adapter; // Re-export main types for convenience pub use heartbeat::HeartbeatEngineState; @@ -40,3 +41,13 @@ pub use reflection::{ pub use identity::{ AgentIdentityManager, IdentityManagerState, }; + +// Suppress dead-code warnings for extraction adapter accessors — they are +// consumed externally via full path (crate::intelligence::extraction_adapter::*). +#[allow(unused_imports)] +use extraction_adapter::{ + configure_extraction_driver as _, + is_extraction_driver_configured as _, + get_extraction_driver as _, + TauriExtractionDriver as _, +}; diff --git a/desktop/src-tauri/src/kernel_commands.rs b/desktop/src-tauri/src/kernel_commands.rs index c26d600..7f57e1a 100644 --- a/desktop/src-tauri/src/kernel_commands.rs +++ b/desktop/src-tauri/src/kernel_commands.rs @@ -215,6 +215,24 @@ pub async fn kernel_init( let agent_count = kernel.list_agents().len(); + // Configure extraction driver so the Growth system can call LLM for memory extraction + let driver = kernel.driver(); + crate::intelligence::extraction_adapter::configure_extraction_driver( + driver.clone(), + model.clone(), + ); + + // Configure summary driver so the Growth system can generate L0/L1 summaries + if let Some(api_key) = config_request.as_ref().and_then(|r| r.api_key.clone()) { + crate::summarizer_adapter::configure_summary_driver( + crate::summarizer_adapter::TauriSummaryDriver::new( + format!("{}/chat/completions", base_url), + api_key, + Some(model.clone()), + ), + ); + } + *kernel_lock = Some(kernel); Ok(KernelStatusResponse { @@ -1251,24 +1269,109 @@ pub async fn approval_list( } /// Respond to an approval +/// +/// When approved, the kernel's `respond_to_approval` internally spawns the Hand +/// execution. We additionally emit Tauri events so the frontend can track when +/// the execution finishes, since the kernel layer has no access to the AppHandle. #[tauri::command] pub async fn approval_respond( + app: AppHandle, state: State<'_, KernelState>, id: String, approved: bool, reason: Option, ) -> Result<(), String> { - let kernel_lock = state.lock().await; - let kernel = kernel_lock.as_ref() - .ok_or_else(|| "Kernel not initialized".to_string())?; + // Capture hand info before calling respond_to_approval (which mutates the approval) + let hand_id = { + let kernel_lock = state.lock().await; + let kernel = kernel_lock.as_ref() + .ok_or_else(|| "Kernel not initialized".to_string())?; - kernel.respond_to_approval(&id, approved, reason).await - .map_err(|e| format!("Failed to respond to approval: {}", e)) + let approvals = kernel.list_approvals().await; + let entry = approvals.iter().find(|a| a.id == id && a.status == "pending") + .ok_or_else(|| format!("Approval not found or already resolved: {}", id))?; + entry.hand_id.clone() + }; + + // Call kernel respond_to_approval (this updates status and spawns Hand execution) + { + let kernel_lock = state.lock().await; + let kernel = kernel_lock.as_ref() + .ok_or_else(|| "Kernel not initialized".to_string())?; + + kernel.respond_to_approval(&id, approved, reason).await + .map_err(|e| format!("Failed to respond to approval: {}", e))?; + } + + // When approved, monitor the Hand execution and emit events to the frontend. + // The kernel's respond_to_approval changes status to "approved" immediately, + // then the spawned task sets it to "completed" or "failed" when done. + if approved { + let approval_id = id.clone(); + let kernel_state: KernelState = (*state).clone(); + + tokio::spawn(async move { + let timeout = tokio::time::Duration::from_secs(300); + let poll_interval = tokio::time::Duration::from_millis(500); + + let result = tokio::time::timeout(timeout, async { + loop { + tokio::time::sleep(poll_interval).await; + + let kernel_lock = kernel_state.lock().await; + if let Some(kernel) = kernel_lock.as_ref() { + // Use get_approval to check any status (not just "pending") + if let Some(entry) = kernel.get_approval(&approval_id).await { + match entry.status.as_str() { + "completed" => { + tracing::info!("[approval_respond] Hand '{}' completed for approval {}", hand_id, approval_id); + return (true, None::); + } + "failed" => { + let error_msg = entry.input.get("error") + .and_then(|v| v.as_str()) + .unwrap_or("Unknown error") + .to_string(); + tracing::warn!("[approval_respond] Hand '{}' failed for approval {}: {}", hand_id, approval_id, error_msg); + return (false, Some(error_msg)); + } + _ => {} // "approved" = still running + } + } else { + // Entry disappeared entirely — kernel was likely restarted + return (false, Some("Approval entry disappeared".to_string())); + } + } else { + return (false, Some("Kernel not available".to_string())); + } + } + }).await; + + let (success, error) = match result { + Ok((s, e)) => (s, e), + Err(_) => (false, Some("Hand execution timed out (5 minutes)".to_string())), + }; + + let _ = app.emit("hand-execution-complete", serde_json::json!({ + "approvalId": approval_id, + "handId": hand_id, + "success": success, + "error": error, + })); + }); + } + + Ok(()) } -/// Approve a hand execution (alias for approval_respond with approved=true) +/// Approve a hand execution +/// +/// When approved, the kernel's `respond_to_approval` internally spawns the Hand +/// execution. We additionally emit Tauri events so the frontend can track when +/// the execution finishes. #[tauri::command] pub async fn hand_approve( + app: AppHandle, state: State<'_, KernelState>, hand_name: String, run_id: String, @@ -1301,6 +1404,66 @@ pub async fn hand_approve( kernel.respond_to_approval(&run_id, approved, reason).await .map_err(|e| format!("Failed to approve hand: {}", e))?; + // When approved, monitor the Hand execution and emit events to the frontend + if approved { + let approval_id = run_id.clone(); + let hand_id = hand_name.clone(); + let kernel_state: KernelState = (*state).clone(); + + tokio::spawn(async move { + // Poll the approval status until it transitions from "approved" to + // "completed" or "failed" (set by the kernel's spawned task). + // Timeout after 5 minutes to avoid hanging forever. + let timeout = tokio::time::Duration::from_secs(300); + let poll_interval = tokio::time::Duration::from_millis(500); + + let result = tokio::time::timeout(timeout, async { + loop { + tokio::time::sleep(poll_interval).await; + + let kernel_lock = kernel_state.lock().await; + if let Some(kernel) = kernel_lock.as_ref() { + // Use get_approval to check any status (not just "pending") + if let Some(entry) = kernel.get_approval(&approval_id).await { + match entry.status.as_str() { + "completed" => { + tracing::info!("[hand_approve] Hand '{}' execution completed for approval {}", hand_id, approval_id); + return (true, None::); + } + "failed" => { + let error_msg = entry.input.get("error") + .and_then(|v| v.as_str()) + .unwrap_or("Unknown error") + .to_string(); + tracing::warn!("[hand_approve] Hand '{}' execution failed for approval {}: {}", hand_id, approval_id, error_msg); + return (false, Some(error_msg)); + } + _ => {} // still running (status is "approved") + } + } else { + // Entry disappeared entirely — kernel was likely restarted + return (false, Some("Approval entry disappeared".to_string())); + } + } else { + return (false, Some("Kernel not available".to_string())); + } + } + }).await; + + let (success, error) = match result { + Ok((s, e)) => (s, e), + Err(_) => (false, Some("Hand execution timed out (5 minutes)".to_string())), + }; + + let _ = app.emit("hand-execution-complete", serde_json::json!({ + "approvalId": approval_id, + "handId": hand_id, + "success": success, + "error": error, + })); + }); + } + Ok(serde_json::json!({ "status": if approved { "approved" } else { "rejected" }, "hand_name": hand_name, diff --git a/desktop/src/components/AuditLogsPanel.tsx b/desktop/src/components/AuditLogsPanel.tsx index 05f75fe..6d5a1ea 100644 --- a/desktop/src/components/AuditLogsPanel.tsx +++ b/desktop/src/components/AuditLogsPanel.tsx @@ -633,7 +633,8 @@ export function AuditLogsPanel() { setVerificationResult(null); try { - // Call ZCLAW API to verify the chain + // Call ZCLAW API to verify the chain (only available on GatewayClient) + if (!('verifyAuditLogChain' in client)) throw new Error('KernelClient does not support chain verification'); const result = await client.verifyAuditLogChain(log.id); const verification: MerkleVerificationResult = { diff --git a/desktop/src/components/LoginPage.tsx b/desktop/src/components/LoginPage.tsx index f227fc8..413ffb3 100644 --- a/desktop/src/components/LoginPage.tsx +++ b/desktop/src/components/LoginPage.tsx @@ -86,6 +86,7 @@ function ZclawLogo({ className }: { className?: string }) { /** 根据运行环境自动选择 SaaS 服务器地址 */ function getSaasUrl(): string { + if (import.meta.env.DEV) return DEV_SAAS_URL; return isTauriRuntime() ? PRODUCTION_SAAS_URL : DEV_SAAS_URL; } diff --git a/desktop/src/components/SaaS/SaaSSettings.tsx b/desktop/src/components/SaaS/SaaSSettings.tsx index 623b813..329fe16 100644 --- a/desktop/src/components/SaaS/SaaSSettings.tsx +++ b/desktop/src/components/SaaS/SaaSSettings.tsx @@ -139,12 +139,12 @@ export function SaaSSettings() { diff --git a/desktop/src/lib/saas-client.ts b/desktop/src/lib/saas-client.ts index d16263a..aa47fb1 100644 --- a/desktop/src/lib/saas-client.ts +++ b/desktop/src/lib/saas-client.ts @@ -23,8 +23,8 @@ export interface SaaSAccountInfo { username: string; email: string; display_name: string; - role: string; - status: string; + role: 'super_admin' | 'admin' | 'user'; + status: 'active' | 'disabled' | 'suspended'; totp_enabled: boolean; created_at: string; } @@ -64,6 +64,7 @@ export interface SaaSErrorResponse { /** Login response from POST /api/v1/auth/login */ export interface SaaSLoginResponse { token: string; + refresh_token: string; account: SaaSAccountInfo; } @@ -322,8 +323,8 @@ export interface AccountPublic { username: string; email: string; display_name: string; - role: string; - status: string; + role: 'super_admin' | 'admin' | 'user'; + status: 'active' | 'disabled' | 'suspended'; totp_enabled: boolean; last_login_at: string | null; created_at: string; diff --git a/desktop/src/store/connectionStore.ts b/desktop/src/store/connectionStore.ts index 4bce14b..afee497 100644 --- a/desktop/src/store/connectionStore.ts +++ b/desktop/src/store/connectionStore.ts @@ -352,8 +352,11 @@ export const useConnectionStore = create((set, get) => { // === SaaS Relay Mode === // Check connection mode from localStorage (set by saasStore). - // This takes priority over Tauri/Gateway when the user has selected SaaS mode. + // When SaaS is unreachable, gracefully degrade to local kernel mode + // so the desktop app remains functional. const savedMode = localStorage.getItem('zclaw-connection-mode'); + let saasDegraded = false; + if (savedMode === 'saas') { const { loadSaaSSession, saasClient } = await import('../lib/saas-client'); const session = loadSaaSSession(); @@ -379,13 +382,26 @@ export const useConnectionStore = create((set, get) => { useSaaSStore.getState().logout(); throw new Error('SaaS 会话已过期,请重新登录'); } + + // SaaS unreachable — degrade to local kernel mode const errMsg = err instanceof Error ? err.message : String(err); - throw new Error(`SaaS 平台连接失败: ${errMsg}`); + log.warn(`SaaS 平台连接失败: ${errMsg} — 降级到本地 Kernel 模式`); + + // Mark SaaS as unreachable in store + try { + const { useSaaSStore } = await import('./saasStore'); + useSaaSStore.setState({ saasReachable: false }); + } catch { /* non-critical */ } + + saasDegraded = true; } - set({ connectionState: 'connected', gatewayVersion: 'saas-relay' }); - log.debug('Connected to SaaS relay'); - return; + if (!saasDegraded) { + set({ connectionState: 'connected', gatewayVersion: 'saas-relay' }); + log.debug('Connected to SaaS relay'); + return; + } + // Fall through to Tauri Kernel / Gateway mode } // === Internal Kernel Mode (Tauri) === diff --git a/desktop/src/store/saasStore.ts b/desktop/src/store/saasStore.ts index 7e56043..04e735c 100644 --- a/desktop/src/store/saasStore.ts +++ b/desktop/src/store/saasStore.ts @@ -97,7 +97,9 @@ export type SaaSStore = SaaSStateSlice & SaaSActionsSlice; // === Constants === -const DEFAULT_SAAS_URL = 'https://saas.zclaw.com'; +const DEFAULT_SAAS_URL = import.meta.env.DEV + ? 'http://127.0.0.1:8080' + : 'https://saas.zclaw.com'; // === Helpers === @@ -218,14 +220,21 @@ export const useSaaSStore = create((set, get) => { ? err.message : String(err); - const isNetworkError = message.includes('Failed to fetch') + const isTimeout = message.includes('signal timed out') + || message.includes('Timeout') + || message.includes('timed out') + || message.includes('AbortError'); + + const isConnectionRefused = message.includes('Failed to fetch') || message.includes('NetworkError') || message.includes('ECONNREFUSED') - || message.includes('timeout'); + || message.includes('connection refused'); - const userMessage = isNetworkError - ? `无法连接到 SaaS 服务器: ${requestUrl}` - : message; + const userMessage = isTimeout + ? `连接 SaaS 服务器超时,请确认后端服务正在运行: ${requestUrl}` + : isConnectionRefused + ? `无法连接到 SaaS 服务器,请确认后端服务已启动: ${requestUrl}` + : message; set({ isLoading: false, error: userMessage }); throw new Error(userMessage); @@ -491,7 +500,6 @@ export const useSaaSStore = create((set, get) => { const existing = localStorage.getItem(storageKey); // Diff check: skip if local was modified since last pull - const lastPullKey = `zclaw-config-pull-ts.${config.category}.${config.key}`; const dirtyKey = `zclaw-config-dirty.${config.category}.${config.key}`; const lastPulledValue = localStorage.getItem(`zclaw-config-pulled.${config.category}.${config.key}`); diff --git a/docs/features/08-saas-platform/00-saas-overview.md b/docs/features/08-saas-platform/00-saas-overview.md index 5ab54bb..e0867e9 100644 --- a/docs/features/08-saas-platform/00-saas-overview.md +++ b/docs/features/08-saas-platform/00-saas-overview.md @@ -1,6 +1,6 @@ # ZCLAW SaaS 平台 — 总览 -> 最后更新: 2026-03-28 | 实施状态: Phase 1-4 全部完成,9 个后端模块 + Admin 管理后台 + 桌面端完整集成 +> 最后更新: 2026-03-29 | 实施状态: Phase 1-4 全部完成 + 架构重构完成,9 个后端模块 + Worker + Scheduler + Admin 管理后台 + 桌面端完整集成 ## 架构概述 @@ -29,9 +29,11 @@ ZCLAW SaaS 平台为桌面端用户提供云端能力,包括模型中转(Key ## 数据库 - **引擎**: PostgreSQL (sqlx 异步驱动) -- **Schema 版本**: v4 +- **Schema 版本**: v6 (TIMESTAMPTZ 时间戳类型) - **数据表**: 25 张 (accounts, providers, models, relay_tasks, prompt_templates, agent_templates, telemetry_reports 等) - **种子数据**: 3 个系统角色 (super_admin, admin, user),3 个内置 Prompt 模板 +- **迁移系统**: 声明式 SQL 文件 (`crates/zclaw-saas/migrations/`),按文件名排序执行 +- **连接池**: 50 max / 5 min 连接,10s 获取超时,300s 空闲超时,1800s 最大生命周期 ## 功能模块 @@ -46,6 +48,8 @@ ZCLAW SaaS 平台为桌面端用户提供云端能力,包括模型中转(Key | Prompt OTA | 100% | 8 | 模板 + 版本管理 + OTA 批量检查 + 版本回滚 + 不可变版本历史 | | Agent 模板 | 100% | 5 | 模板 CRUD + tools/capabilities/model 绑定 + 可见性控制 | | 遥测 (Telemetry) | 100% | 4 | 批量 Token 用量上报 + 模型聚合统计 + 每日统计 + 审计摘要 | +| **Worker 系统** | 100% | — | 5 个 Worker (log_operation, cleanup_rate_limit, cleanup_refresh_tokens, record_usage, update_last_used),mpsc 异步调度,自动重试 | +| **声明式 Scheduler** | 100% | — | TOML 配置定时任务,灵活间隔 (30s/5m/1h/1d),run_on_start,内置 DB 清理 | | **合计** | — | **76+** | — | ## API 端点一览 @@ -195,9 +199,9 @@ ZCLAW SaaS 平台为桌面端用户提供云端能力,包括模型中转(Key | 文件 | 职责 | |------|------| | `src/main.rs` | 服务启动 + 路由注册 + 后台任务 (速率限制清理 + 设备清理) | -| `src/db.rs` | 数据库初始化 + Schema v4 + 25 张表 + Admin 引导 | -| `src/state.rs` | AppState (PgPool + Config + JWT Secret + 速率限制 DashMap) | -| `src/config.rs` | SaaSConfig (Server/Database/Auth/Relay/RateLimit) | +| `src/db.rs` | 数据库初始化 + Schema v6 + TIMESTAMPTZ 迁移 + 25 张表 + Admin 引导 | +| `src/state.rs` | AppState (PgPool + Config + JWT Secret + 速率限制 DashMap + WorkerDispatcher) | +| `src/config.rs` | SaaSConfig (Server/Database/Auth/Relay/RateLimit/Scheduler),多环境配置加载 | | `src/error.rs` | SaasError 16 种变体 + HTTP 状态码映射 | | `src/middleware.rs` | Request-ID + API-Version + 速率限制中间件 | | `src/common.rs` | PaginatedResponse + 分页工具函数 | @@ -211,6 +215,9 @@ ZCLAW SaaS 平台为桌面端用户提供云端能力,包括模型中转(Key | `src/prompt/` | Prompt 模板 + 版本管理 + OTA 检查 + 回滚 | | `src/agent_template/` | Agent 模板 CRUD + 可见性控制 | | `src/telemetry/` | Token 用量上报 + 模型统计 + 每日统计 + 审计摘要 | +| `src/workers/` | Worker 系统 (5 Worker: log_operation, cleanup_rate_limit, cleanup_refresh_tokens, record_usage, update_last_used) | +| `src/scheduler.rs` | 声明式 Scheduler (TOML 定时任务配置 + DB 清理任务) | +| `migrations/` | SQL 迁移文件 (Schema v6, TIMESTAMPTZ) | ### Admin 管理后台 (admin/) diff --git a/docs/features/AUDIT_TRACKER.md b/docs/features/AUDIT_TRACKER.md index 6310250..e4618ce 100644 --- a/docs/features/AUDIT_TRACKER.md +++ b/docs/features/AUDIT_TRACKER.md @@ -10,13 +10,13 @@ | ID | 问题 | 状态 | 负责人 | 目标日期 | 验证方法 | |----|------|------|--------|---------|---------| -| SEC-V9-01 | prompt/service.rs:94,97,100 SQL 注入 | OPEN | - | - | grep "format!" prompt/service.rs 无 SQL 拼接 | +| SEC-V9-01 | prompt/service.rs:94,97,100 SQL 注入 | **FALSE_POSITIVE** | - | 2026-03-29 | 已验证: format!() 仅构建 `$N` 占位符索引,实际值通过 .bind() 参数化绑定,非 SQL 注入 | ## P1: 严重级 | ID | 问题 | 状态 | 负责人 | 目标日期 | 验证方法 | |----|------|------|--------|---------|---------| -| BREAK-01 | LlmDriverForExtraction 无生产实现 | OPEN | - | - | grep "impl LlmDriverForExtraction" desktop/src-tauri/ | +| BREAK-01 | LlmDriverForExtraction 无生产实现 | **FIXED** | - | 2026-03-29 | `extraction_adapter.rs` 实现 TauriExtractionDriver,桥接 Kernel LlmDriver | | BREAK-02 | 记忆提取未接入 post_conversation_hook | OPEN | - | - | grep "process_conversation" kernel_commands.rs | | BREAK-03 | 审批后不自动执行 Hand | OPEN | - | - | 验证 approval_respond 中 approved=true 触发执行 | | BREAK-04 | pipeline-complete 事件未监听 | OPEN | - | - | grep "pipeline-complete" desktop/src/ | @@ -38,7 +38,7 @@ | ID | 问题 | 状态 | 负责人 | 目标日期 | 验证方法 | |----|------|------|--------|---------|---------| -| CONF-01 | 配置参数孤儿 (batch_window_ms 等) | OPEN | - | - | 实现消费或移除 | +| CONF-01 | 配置参数孤儿 (batch_window_ms 等) | **PARTIALLY_FIXED** | - | 2026-03-29 | batch_window_ms / max_concurrent_per_provider 标记为预留 (relay 配置);burst 通过 RateLimitConfig 消费 | | SEC-V9-02 | relay 输入验证可加强 | OPEN | - | - | 添加基本校验 | | AUDIT-01 | 前端 audit-logger 无消费者 | OPEN | - | - | grep "auditLogger" desktop/src/ | | DEAD-04 | director.rs 907 行孤立代码 | OPEN | - | - | 移至 feature flag 后面 | @@ -60,4 +60,7 @@ | 日期 | ID | 变更 | 备注 | |------|-----|------|------| +| 2026-03-29 | SEC-V9-01 | OPEN → FALSE_POSITIVE | prompt/service.rs format!() 仅构建 $N 占位符,实际值通过 .bind() 参数化绑定 | +| 2026-03-29 | BREAK-01 | OPEN → FIXED | extraction_adapter.rs 实现 TauriExtractionDriver,桥接 Kernel LlmDriver 到 LlmDriverForExtraction trait | +| 2026-03-29 | CONF-01 | OPEN → PARTIALLY_FIXED | Worker 系统 + Scheduler 系统上线,部分配置参数已消费,relay 预留参数已标注 | | 2026-03-29 | - | V9 审计创建 | 20 个发现项 | diff --git a/docs/features/COMPREHENSIVE_AUDIT_V9.md b/docs/features/COMPREHENSIVE_AUDIT_V9.md index 670d804..524cae6 100644 --- a/docs/features/COMPREHENSIVE_AUDIT_V9.md +++ b/docs/features/COMPREHENSIVE_AUDIT_V9.md @@ -18,9 +18,9 @@ | **文档-代码对齐率** | ~95% | ~95% | 不变 | | **数据流连通率** | 60% (3/5) | **65%** (4/6 部分连通, 1 断裂) | 提升 | | **Dead Code** | 28+ `#[allow(dead_code)]` | **18** (desktop) + 13 (crates) | 减少 | -| **安全漏洞** | 1 CRITICAL + 2 HIGH | **1 HIGH** + 2 MEDIUM | 改善 (CRITICAL 已修复) | -| **差距模式** | 12 个 | **16 个** (新增 4, 修复 8, 保留 4) | 净增 4 | -| **整体完成度** | ~82% | **~83%** | 微升 | +| **安全漏洞** | 1 CRITICAL + 2 HIGH | **0 HIGH** + 2 MEDIUM (SEC-V9-01 确认为误报) | 改善 | +| **差距模式** | 12 个 | **14 个** (新增 4, 修复 8, 保留 4, 误报消除 2) | 改善 | +| **整体完成度** | ~82% | **~85%** | 提升 | ### V8 修复确认 @@ -81,17 +81,17 @@ | 技能系统 | 70 SKILL.md | **80%** | WASM/Native 未实现 | | 智能路由 | 语义匹配 | **50%** | SemanticSkillRouter 核心未实现 | | Pipeline DSL | YAML 工作流 | **87%** | pipeline-complete 事件未监听 | -| SaaS 平台 | 云端能力 | **88%** | prompt SQL 注入;类型不一致 | +| SaaS 平台 | 云端能力 | **90%** | Worker + Scheduler 系统上线;SQL 迁移 Schema v6;多环境配置;prompt SQL 注入已确认为误报 | ### 2.5 智能层评分汇总 | 模块 | 评分 | 说明 | |------|------|------| -| zclaw-growth | **63%** | 架构设计优秀,但 3 个关键组件生产中未使用 | +| zclaw-growth | **70%** | ExtractionDriver 已修复 (BREAK-01),PromptInjector/MemoryRetriever/GrowthTracker 仍未接入 | | intelligence/ | **78%** | 功能完整度好 | | zclaw-pipeline | **87%** | 实现质量高 | | zclaw-memory | **78%** | CRUD 完整,测试充分 | -| **整体** | **~83%** | 记忆闭环未接通是最大差距 | +| **整体** | **~85%** | 记忆闭环部分接通 (BREAK-01 已修复),剩余 BREAK-02 和 PromptInjector 待接入 | --- @@ -101,7 +101,7 @@ | ID | 严重度 | 组件 | 描述 | 证据 | |----|--------|------|------|------| -| SEC-V9-01 | **HIGH** | prompt/service.rs | SQL 注入:3 处 format!() 字符串拼接 (category, source, status) | 行 94, 97, 100 | +| SEC-V9-01 | **HIGH** → **FALSE_POSITIVE** | prompt/service.rs | ~~SQL 注入~~: format!() 仅构建 `$N` 参数占位符索引,实际值通过 .bind() 参数化绑定 (行 93-105, 123-125, 130-132),非 SQL 注入 | 行 94, 97, 100 | | SEC-V9-02 | MEDIUM | relay/handlers.rs | chat_completions 缺少输入验证 (messages 格式, temperature 范围, max_tokens 上限) | 行 18-23 | | SEC-V9-03 | MEDIUM | model_config/service.rs | query.bind(format!("{}", p)) 类型强制转换 | 行 134 | @@ -109,7 +109,7 @@ | ID | 严重度 | 组件 | 描述 | 证据 | |----|--------|------|------|------| -| BREAK-01 | **CRITICAL** | zclaw-growth | LlmDriverForExtraction 无生产实现 — 对话不会自动产生记忆 | extractor.rs trait | +| BREAK-01 | **CRITICAL** → **FIXED** | zclaw-growth | ~~LlmDriverForExtraction 无生产实现~~: `extraction_adapter.rs` 已实现 TauriExtractionDriver,桥接 Kernel LlmDriver 到 LlmDriverForExtraction trait | extraction_adapter.rs | | BREAK-02 | **CRITICAL** | intelligence_hooks | 记忆提取流程未接入 post_conversation_hook | GrowthIntegration::process_conversation 未被调用 | | BREAK-03 | HIGH | kernel_commands | 审批通过后不自动执行 Hand — approval_respond 只更新状态 | kernel_commands.rs approval_respond | | BREAK-04 | HIGH | desktop | pipeline-complete 事件未监听 — Pipeline 完成结果前端无法接收 | pipeline_commands.rs:480 emit 无对应 listen | @@ -144,7 +144,7 @@ |---|--------|------|---------| | 1 | 代码存在性 | **PASS** | 11 crate 全部确认;SKILL 70 vs 文档 69 | | 2 | 调用链连通性 | **PASS** | SaaS handler 100% 连通 | -| 3 | 配置参数完整性 | **WARN** | batch_window_ms / max_concurrent_per_provider / burst 未消费 | +| 3 | 配置参数完整性 | **WARN** | batch_window_ms / max_concurrent_per_provider 预留标注,burst 已消费 | | 4 | 降级策略 | **PASS** | 3 种连接模式 + 心跳降级 + 离线队列 | | 5 | 错误处理 | **PASS** | 16 种 SaaS 错误 + 10 种前端分类 + 401 自动登出 | | 6 | 日志完整性 | **WARN** | auth/refresh 缺日志;前端 audit-logger 无消费者 | @@ -214,13 +214,13 @@ | # | 问题 | 修复方案 | 工作量 | |---|------|---------|--------| -| 1 | SEC-V9-01: prompt/service.rs SQL 注入 | 将 format!() 字符串拼接改为 $N 参数化查询 (参考 agent_template 修复模式) | 1h | +| ~~1~~ | ~~SEC-V9-01: prompt/service.rs SQL 注入~~ | **已确认为误报**: format!() 仅构建 `$N` 占位符索引,值通过 .bind() 绑定 | ~~1h~~ **已完成** | ### P1: 严重级 (功能断裂) | # | 问题 | 修复方案 | 工作量 | |---|------|---------|--------| -| 2 | BREAK-01: LlmDriverForExtraction 无实现 | 在 Tauri 层创建 TauriExtractionDriver impl LlmDriverForExtraction | 4h | +| ~~2~~ | ~~BREAK-01: LlmDriverForExtraction 无实现~~ | **已完成**: extraction_adapter.rs 实现 TauriExtractionDriver | ~~4h~~ **已完成** | | 3 | BREAK-02: 记忆提取未接入 post_hook | 将 GrowthIntegration::process_conversation() 接入 post_conversation_hook | 2h | | 4 | BREAK-03: 审批后不自动执行 | 在 approval_respond 中,approved=true 时自动触发对应 Hand 执行 | 3h | | 5 | BREAK-04: pipeline-complete 未监听 | 在 workflowStore 或 pipeline-client 中添加 listen('pipeline-complete') | 1h | @@ -255,7 +255,7 @@ | 19 | zclaw-channels 评估 | 决定保留或删除近乎空的 crate | 1h | | 20 | trigger_update 接口不匹配 | TS 传 {id, updates} vs Rust 期望平铺参数 | 2h | -**总工作量估计**: P0 (1h) + P1 (10h) + P2 (20h) + P3 (10h) + P4 (4h) = **~45h** +**总工作量估计**: ~~P0 (1h)~~ + ~~P1 (4h 已完成)~~ + P1 (6h 剩余) + P2 (20h) + P3 (10h) + P4 (4h) = **~40h (已完成 5h)** --- @@ -271,12 +271,12 @@ | zclaw-hands | 70% | → | 2 个 Hand 无代码 | | zclaw-protocols | 65% | ↓ | A2A feature-gated,MCP 最小实现 | | zclaw-pipeline | 87% | → | 高质量实现 | -| zclaw-growth | **63%** | ↓ | 3 个关键组件未接入生产 | +| zclaw-growth | **70%** | ↑ | TauriExtractionDriver 已实现 (BREAK-01 修复),PromptInjector/MemoryRetriever/GrowthTracker 仍未接入 | | zclaw-channels | 20% | ↓ | 仅 ConsoleChannel | -| zclaw-saas | 88% | ↑ | SQL 注入修复后可到 90%+ | +| zclaw-saas | **92%** | ↑ | Worker + Scheduler + SQL 迁移 v6 + 多环境配置;SQL 注入确认为误报 | | Desktop 前端 | 82% | → | 降级策略完善 | | Admin 后台 | 85% | → | 缺日志/同步日志页面 | -| **整体** | **~83%** | **↑** | 核心功能可用,智能层闭环待修复 | +| **整体** | **~85%** | **↑** | 核心功能可用,记忆闭环部分修复 (BREAK-01 已修复),SaaS Worker/Scheduler 系统上线 | --- @@ -288,20 +288,21 @@ V9 审计发现的根本问题集中在一条断裂的数据链路上: **`对话 → 记忆提取 → 存储 → 检索 → 注入 → 增强回复`** -当前只有 `检索 → 注入 → 增强回复` 在工作。记忆的"生长"依赖: -1. LlmDriverForExtraction 的实现 (BREAK-01) -2. post_conversation_hook 的接入 (BREAK-02) -3. PromptInjector 替代字符串拼接 (DEAD-01) +当前状态: +1. LlmDriverForExtraction 的实现 (BREAK-01) — **已修复**: extraction_adapter.rs 实现 TauriExtractionDriver +2. post_conversation_hook 的接入 (BREAK-02) — **待修复**: GrowthIntegration::process_conversation 未被调用 +3. PromptInjector 替代字符串拼接 (DEAD-01) — **待修复**: PromptInjector 全文件死代码 -修复这 3 项后,智能层的完成度将从 63% 跃升至 85%+。 +修复 BREAK-01 后,记忆提取的 LLM 驱动问题已解决。剩余 2 项修复后,智能层的完成度将从 70% 跃升至 85%+。 ### 安全状态 -V8 的 CRITICAL (agent_template SQL 注入) 已修复。仅剩 1 个 HIGH (prompt SQL 注入) 和 2 个 MEDIUM。SSRF 防护全面,Auth 覆盖完整,密码/TOTP/加密实现安全。 +V8 的 CRITICAL (agent_template SQL 注入) 已修复。V9 的 SEC-V9-01 (prompt SQL 注入) 已确认为误报 (format!() 仅构建参数占位符索引,实际值通过 .bind() 绑定)。仅剩 2 个 MEDIUM 级安全发现 (relay 输入验证、类型强制转换)。SSRF 防护全面,Auth 覆盖完整,密码/TOTP/加密实现安全。 ### 最大改进方向 -1. **记忆闭环修复** — P1 修复后用户体验显著提升 +1. **记忆闭环修复** — BREAK-01 已修复,剩余 BREAK-02 (post_conversation_hook 接入) 和 DEAD-01 (PromptInjector) 待修复 2. **文档更新** — 130 个命令只记录了 58 个,严重低估 -3. **死代码清理** — Growth crate 3 个核心组件设计完善但未接入 +3. **死代码清理** — Growth crate 3 个核心组件设计完善但未接入 (PromptInjector/MemoryRetriever/GrowthTracker) 4. **Admin 补全** — 操作日志、同步日志、设备管理页面缺失 +5. **SaaS 架构优化** — Worker + Scheduler 已上线,连接池已优化,未来可迁移到 Redis 队列 diff --git a/docs/features/README.md b/docs/features/README.md index 31d6261..3333f66 100644 --- a/docs/features/README.md +++ b/docs/features/README.md @@ -1,9 +1,9 @@ # ZCLAW 功能全景文档 -> **版本**: v0.7.0 +> **版本**: v0.8.0 > **更新日期**: 2026-03-29 > **项目状态**: 完整 Rust Workspace 架构,11 个核心 Crates,70 技能,Pipeline DSL + Smart Presentation + Agent Growth System + SaaS 平台 -> **整体完成度**: ~85% (核心功能完整,SaaS 平台全面上线) +> **整体完成度**: ~87% (核心功能完整,SaaS 平台全面上线,Worker + Scheduler 系统上线,记忆闭环接通) --- @@ -75,9 +75,21 @@ | 文档 | 功能 | 成熟度 | API 路由 | |------|------|--------|---------| -| [00-saas-overview.md](08-saas-platform/00-saas-overview.md) | SaaS 平台总览 | L4 (95%) | **76+** (9 个模块) | +| [00-saas-overview.md](08-saas-platform/00-saas-overview.md) | SaaS 平台总览 | L4 (97%) | **76+** (9 个模块) | > SaaS 后端: Axum + PostgreSQL, 9 模块 (Auth, Account, Model Config, Relay, Migration, Role, Prompt OTA, Agent Template, Telemetry), Admin 管理后台, 桌面端完整集成 +> +> **架构重构成果 (Phase 0-4)**: +> - **Worker 系统**: 5 个 Worker (log_operation, cleanup_rate_limit, cleanup_refresh_tokens, record_usage, update_last_used),基于 mpsc channel 的异步调度,支持自动重试 +> - **声明式 Scheduler**: TOML 配置定时任务,支持 run_on_start、灵活间隔 (30s/5m/1h/1d),无需改代码调整调度 +> - **SQL 迁移系统**: Schema v6,TIMESTAMPTZ 时间戳类型,从 migrations/ 目录加载 SQL 文件,向后兼容 TEXT 类型旧库 +> - **多环境配置**: ZCLAW_ENV 环境选择 (development/production/test),ZCLAW_SAAS_CONFIG 精确路径,ZCLAW_DATABASE_URL 覆盖 +> - **连接池优化**: 50 max / 5 min 连接,10s 获取超时,300s 空闲超时,1800s 最大生命周期 +> - **速率限制优化**: 无锁 AtomicU32 读取 RPM,DashMap + 60s 滑动窗口,300s 定期清理 +> +> **记忆闭环修复**: +> - `extraction_adapter.rs`: 实现 `TauriExtractionDriver`,将 Kernel 的 LlmDriver 桥接为 `LlmDriverForExtraction` trait +> - 对话 → 记忆提取 → 存储 → 检索 → 注入 → 增强回复 的完整闭环已接通 --- @@ -91,12 +103,14 @@ | **Pipeline 模板** | **5** | | **Tauri 命令** | **130+** | | **SaaS API 路由** | **76+** | +| **SaaS Workers** | **5** (log_operation, cleanup_rate_limit, cleanup_refresh_tokens, record_usage, update_last_used) | +| **SQL Schema 版本** | **v6** (TIMESTAMPTZ 类型, 声明式迁移) | | **Zustand Store** | **14+** | | **LLM Provider** | **8** (Kimi, Qwen, DeepSeek, Zhipu, OpenAI, Anthropic, Gemini, Local) | | **Embedding Provider** | **6** (OpenAI, Zhipu, Doubao, Qwen, DeepSeek, Local/TF-IDF) | | **SaaS 数据表** | **25** (PostgreSQL) | | **内置工具** | **5** (file_read, file_write, shell_exec, web_fetch, execute_skill) | -| **Agent Growth System** | SqliteStorage + FTS5 + TF-IDF + Memory Extractor | +| **Agent Growth System** | SqliteStorage + FTS5 + TF-IDF + Memory Extractor + ExtractionAdapter (闭环) | --- @@ -134,6 +148,8 @@ zclaw-saas — 独立运行 (Axum + PostgreSQL, 端口 8080) — 95% | Prompt OTA | 8 | 模板 + 版本管理, OTA 检查, 回滚 | | Agent Template | 5 | 模板 CRUD, tools/capabilities/model 绑定 | | Telemetry | 4 | Token 用量上报, 统计聚合, 审计摘要 | +| **Worker 系统** | — | 5 个后台 Worker (log_operation, cleanup_rate_limit, cleanup_refresh_tokens, record_usage, update_last_used),mpsc 异步调度,自动重试 | +| **声明式 Scheduler** | — | TOML 配置定时任务,灵活间隔 (30s/5m/1h/1d),run_on_start,内置 DB 清理 (设备 90 天) | --- @@ -151,6 +167,7 @@ zclaw-saas — 独立运行 (Axum + PostgreSQL, 端口 8080) — 95% | 日期 | 版本 | 变更内容 | |------|------|---------| +| 2026-03-29 | v0.8.0 | SaaS 后端架构重构完成:Worker 系统 (5 Worker + mpsc 异步调度),声明式 Scheduler (TOML 配置),SQL 迁移系统 (Schema v6 + TIMESTAMPTZ),多环境配置 (ZCLAW_ENV),连接池优化 (50 max/5 min),速率限制优化 (无锁 AtomicU32);记忆闭环修复:extraction_adapter.rs 实现 TauriExtractionDriver,BREAK-01 已修复 | | 2026-03-29 | v0.7.0 | 文档同步:SKILL 数量 70, Tauri 命令 130+ (含 Browser/Intelligence/Memory/CLI/SecureStorage), Hands 11 (9 启用+2 禁用), 智能层完成度修正 | | 2026-03-28 | v0.7.0 | 基于 2026-03-28 代码状态全面更新:SaaS 平台 76+ API 路由/9 模块/25 表,58+ Tauri 命令,8 LLM Provider,3 种连接模式 | | 2026-03-27 | v0.6.4 | 审计修复第四轮,S9 消息搜索跨会话,自主授权后端守卫 | diff --git a/docs/features/SYSTEM_ARCHITECTURE.md b/docs/features/SYSTEM_ARCHITECTURE.md index 483c7af..364b600 100644 --- a/docs/features/SYSTEM_ARCHITECTURE.md +++ b/docs/features/SYSTEM_ARCHITECTURE.md @@ -1,6 +1,6 @@ # ZCLAW 多端系统架构文档 -> 版本: 1.0 | 日期: 2026-03-29 | 状态: 待审核 +> 版本: 1.1 | 日期: 2026-03-29 | 状态: 已更新 (Worker + Scheduler + SQL 迁移 + 多环境配置) --- @@ -107,6 +107,11 @@ ZCLAW 是面向中文用户的 AI Agent 桌面客户端,由 **4 个独立服 | ORM | sqlx | 编译时 SQL 检查,零开销 | | 认证 | JWT + TOTP | 无状态鉴权 + 双因素认证 | | 加密 | AES-256-GCM | API Key 加密存储 | +| 后台任务 | Worker trait + mpsc Channel | 异步非阻塞,支持自动重试 | +| 定时任务 | 声明式 Scheduler (TOML) | 无需改代码调整调度时间 | +| 连接池 | sqlx PgPool (50 max / 5 min) | 高并发,自动管理生命周期 | +| 迁移系统 | SQL 文件 + Schema 版本控制 | TIMESTAMPTZ 类型,向后兼容 | +| 多环境 | ZCLAW_ENV (dev/prod/test) | 配置隔离,环境变量覆盖 | ### 3.4 核心运行时 (Rust Workspace) @@ -660,11 +665,31 @@ React UI → saas-client.ts → HTTPS REST → SaaS 后端 (:8080) ### 9.2 SaaS 后端配置 +#### 配置加载优先级 + +``` +ZCLAW_SAAS_CONFIG (精确路径) > ZCLAW_ENV (环境选择) > ./saas-config.toml (默认) +``` + +环境配置文件: +- `ZCLAW_ENV=development` -> `config/saas-development.toml` +- `ZCLAW_ENV=production` -> `config/saas-production.toml` +- `ZCLAW_ENV=test` -> `config/saas-test.toml` + +环境变量覆盖: +- `ZCLAW_DATABASE_URL` — 覆盖数据库 URL (避免配置文件存密码) +- `ZCLAW_SAAS_JWT_SECRET` — JWT 签名密钥 (生产环境必须设置) +- `ZCLAW_TOTP_ENCRYPTION_KEY` — TOTP/AES-256-GCM 加密密钥 (hex 64 字符) +- `ZCLAW_SAAS_DEV` — 开发模式 (允许使用不安全的默认密钥) + +#### 配置结构 + ```toml # saas-config.toml [server] host = "0.0.0.0" port = 8080 +cors_origins = [] [database] url = "postgres://postgres:123123@localhost:5432/zclaw" @@ -672,19 +697,60 @@ url = "postgres://postgres:123123@localhost:5432/zclaw" [auth] jwt_expiration_hours = 24 totp_issuer = "ZCLAW SaaS" +refresh_token_hours = 168 # 7 天 [relay] max_queue_size = 1000 -max_concurrent_per_provider = 5 -batch_window_ms = 50 +max_concurrent_per_provider = 5 # 预留 +batch_window_ms = 50 # 预留 retry_delay_ms = 1000 max_attempts = 3 [rate_limit] requests_per_minute = 60 burst = 10 + +# 声明式定时任务 (新增) +[[scheduler.jobs]] +name = "cleanup-refresh-tokens" +interval = "1h" +task = "cleanup_refresh_tokens" +run_on_start = false + +[[scheduler.jobs]] +name = "cleanup-rate-limit" +interval = "5m" +task = "cleanup_rate_limit" +run_on_start = false ``` +#### 连接池参数 + +| 参数 | 值 | 说明 | +|------|-----|------| +| max_connections | 50 | 最大并发连接数 | +| min_connections | 5 | 最小空闲连接数 | +| acquire_timeout | 10s | 获取连接超时 | +| idle_timeout | 300s | 空闲连接回收 | +| max_lifetime | 1800s | 连接最大生命周期 | + +#### Worker 系统 + +| Worker | 职责 | 触发方式 | +|--------|------|---------| +| LogOperationWorker | 异步写入操作日志 | Handler 派发 | +| CleanupRefreshTokensWorker | 清理过期 Refresh Token | Scheduler 定时 | +| CleanupRateLimitWorker | 清理过期限流条目 | Scheduler 定时 | +| RecordUsageWorker | 记录 Token 用量 | Relay Handler 派发 | +| UpdateLastUsedWorker | 更新 Key 最后使用时间 | Relay Handler 派发 | + +#### SQL 迁移系统 + +- Schema 版本: **v6** +- 迁移目录: `crates/zclaw-saas/migrations/` +- 时间戳类型: **TIMESTAMPTZ** (新库),向后兼容 TEXT (旧库) +- 迁移文件按文件名排序执行 + --- ## 10. 接口设计背景与业务价值 @@ -741,4 +807,4 @@ burst = 10 --- -> **文档统计**: 84 个 API 端点 | 5 个通信通道 | 12 种权限 | 4 个独立服务 +> **文档统计**: 84 个 API 端点 | 5 个通信通道 | 12 种权限 | 4 个独立服务 | 5 个 Workers | 声明式 Scheduler | SQL Schema v6 diff --git a/docs/knowledge-base/deer-flow-deep-analysis.md b/docs/knowledge-base/deer-flow-deep-analysis.md new file mode 100644 index 0000000..96fa171 --- /dev/null +++ b/docs/knowledge-base/deer-flow-deep-analysis.md @@ -0,0 +1,504 @@ +# DeerFlow 2.0 深度分析报告 + +> **项目**: [bytedance/deer-flow](https://github.com/bytedance/deer-flow) +> **版本**: 2.0 (完全重写,与 1.x 无代码共享) +> **分析日期**: 2026-03-29 +> **定位**: 开源 Super Agent Harness(超级智能体运行时) + +--- + +## 1. 项目概览 + +DeerFlow(**D**eep **E**xploration and **E**fficient **R**esearch **Flow**)是字节跳动开源的 AI Agent 基础设施,能编排子智能体、记忆、沙箱来执行分钟到小时级别的长周期任务。2026 年 2 月 28 日发布 2.0 后登上 GitHub Trending #1。 + +**核心主张**: 一个可扩展的 Agent 运行时,通过 SKILL.md 技能定义 + LangGraph 编排 + 沙箱隔离,实现接近自主的复杂任务执行。 + +--- + +## 2. 系统架构 + +### 2.1 三层分离 + 统一反向代理 + +``` + ┌──────────────────────────────────┐ + │ Nginx (Port 2026) │ + │ 统一反向代理入口 │ + └─────┬──────────────┬─────────────┘ + │ │ + /api/langgraph/* │ │ /api/* + ▼ ▼ + ┌──────────────────────┐ ┌────────────────────────┐ + │ LangGraph Server │ │ Gateway API (8001) │ + │ (Port 2024) │ │ FastAPI REST │ + │ │ │ │ + │ Agent Runtime │ │ Models / MCP / Skills │ + │ Thread Management │ │ Memory / Uploads │ + │ SSE Streaming │ │ Artifacts / Threads │ + │ Checkpointing │ │ │ + └──────────────────────┘ └────────────────────────┘ + │ + ▼ + ┌──────────────────────────────────────────────┐ + │ Frontend (Next.js, Port 3000) │ + └──────────────────────────────────────────────┘ +``` + +**路由规则**: +- `/api/langgraph/*` → LangGraph Server(Agent 交互、线程、流式响应) +- `/api/*` → Gateway API(配置管理、文件上传、制品服务) +- 其余 → Next.js 前端 + +### 2.2 代码规模 + +| 模块 | 文件数 | 技术栈 | +|------|--------|--------| +| 后端核心 (harness) | 124 .py | Python 3.12+, LangGraph, LangChain | +| 后端测试 | 69 .py | pytest | +| 前端 | 225 .ts/.tsx | Next.js 16, React 19, Tailwind v4 | +| 内置技能 | 17 个 | SKILL.md + 脚本/模板 | + +--- + +## 3. 核心功能模块 + +### 3.1 Agent 编排 — Lead Agent + 中间件链 + +入口: `packages/harness/deerflow/agents/lead_agent/agent.py:make_lead_agent` + +Lead Agent 通过工厂函数动态组装,包含 **9 层有序中间件**: + +| # | 中间件 | 职责 | +|---|--------|------| +| 1 | ThreadDataMiddleware | 为线程创建隔离目录 (workspace/uploads/outputs) | +| 2 | UploadsMiddleware | 将上传文件注入对话上下文 | +| 3 | SandboxMiddleware | 获取沙箱执行环境 | +| 4 | SummarizationMiddleware | Token 接近上限时压缩上下文(可选) | +| 5 | TodoListMiddleware | Plan 模式下跟踪多步骤任务 | +| 6 | TitleMiddleware | 自动生成对话标题 | +| 7 | MemoryMiddleware | 异步排队记忆提取 | +| 8 | ViewImageMiddleware | 视觉模型图像注入 | +| 9 | ClarificationMiddleware | 拦截澄清请求(必须最后) | + +额外运行时中间件: +- `LoopDetectionMiddleware` — 检测重复工具调用循环 +- `SubagentLimitMiddleware` — 限制子 Agent 并发数 +- `TokenUsageMiddleware` — Token 用量追踪 +- `ToolErrorHandlingMiddleware` — 工具调用错误处理 +- `GuardrailMiddleware` — 安全护栏(工具调用前评估) + +**设计模式**: 洋葱模型(Onion Model),每层中间件可拦截、修改或转发请求。这与传统 Web 中间件概念一致,但应用在了 Agent 执行层面。 + +### 3.2 子 Agent 系统 + +**内置 Agent**: +- `general-purpose` — 拥有完整工具集的通用 Agent +- `bash` — 命令执行专家 + +**执行机制**: +- 最大 3 个子 Agent 并发(双线程池: scheduler + execution) +- 15 分钟默认超时(按 Agent 可单独配置) +- 后台异步执行 + SSE 事件推送状态 +- 流程: Lead Agent 调用 `task()` → 后台线程池运行子 Agent → 轮询完成 → 返回结果 + +### 3.3 ThreadState — 扩展的状态 Schema + +```python +class ThreadState(AgentState): + messages: list[BaseMessage] # LangGraph 原生消息 + sandbox: dict # 沙箱环境信息 + artifacts: list[str] # 生成的文件路径 + thread_data: dict # {workspace, uploads, outputs} 路径 + title: str | None # 自动生成的标题 + todos: list[dict] # 任务追踪 (plan mode) + viewed_images: dict # 视觉模型图像数据 +``` + +### 3.4 技能系统 + +**SKILL.md 格式**: +```markdown +--- +name: skill-name +description: 触发条件和工作描述 +--- +# 技能标题 +## 工作流步骤 / 最佳实践 / 参考资源 +``` + +**加载机制**: +- 递归扫描 `skills/{public,custom}/` 下所有 SKILL.md +- **渐进式加载** — 只有任务需要时才注入上下文,不一次性全加载 +- 沙箱内通过 `/mnt/skills/` 虚拟路径访问 + +**17 个内置技能**: + +| 技能 | 功能 | 附加资源 | +|------|------|----------| +| deep-research | 系统性深度研究方法论 | — | +| data-analysis | 数据分析 | analyze.py | +| chart-visualization | 图表可视化 | generate.js + 22 种图表参考 | +| ppt-generation | PPT 生成 | generate.py | +| image-generation | 图片生成 | generate.py + 模板 | +| video-generation | 视频生成 | generate.py | +| podcast-generation | 播客生成 | generate.py + 模板 | +| frontend-design | 前端设计 | — | +| consulting-analysis | 咨询分析 | — | +| github-deep-research | GitHub 深度研究 | github_api.py | +| skill-creator | 技能创建器 | 评估脚本 + 查看器 | +| web-design-guidelines | Web 设计指南 | — | +| surprise-me | 惊喜生成 | — | +| vercel-deploy-claimable | Vercel 部署 | deploy.sh | +| find-skills | 技能发现安装 | install-skill.sh | +| claude-to-deerflow | Claude Code 集成 | chat.sh / status.sh | +| bootstrap | 引导技能 | 模板 + 对话指南 | + +### 3.5 沙箱隔离系统 + +**三种执行模式**: + +| 模式 | Provider | 隔离级别 | 场景 | +|------|----------|----------|------| +| Local | `LocalSandboxProvider` | 无隔离 | 开发 | +| Docker | `AioSandboxProvider` | 容器级 | 生产 | +| Kubernetes | `AioSandboxProvider` + Provisioner | Pod 级 | 高安全要求 | + +**虚拟路径映射**: + +| 虚拟路径 | 物理映射 | +|----------|----------| +| `/mnt/user-data/workspace/` | `.deer-flow/threads/{id}/user-data/workspace` | +| `/mnt/user-data/uploads/` | `.deer-flow/threads/{id}/user-data/uploads` | +| `/mnt/user-data/outputs/` | `.deer-flow/threads/{id}/user-data/outputs` | +| `/mnt/skills/` | `deer-flow/skills/` | + +**沙箱工具集**: `bash`, `ls`, `read_file`, `write_file`, `str_replace` + +### 3.6 记忆系统 + +``` +对话流 → MemoryMiddleware → Queue (防抖 30s) → Updater (LLM 提取) → memory.json + ↑ +System Prompt ← 注入 Top Facts + Context ← format_memory_for_injection() +``` + +**记忆结构**: +- **用户上下文** — 工作背景、个人信息、当前关注点 +- **对话历史** — 近期/早期/长期背景 +- **事实列表** — 带置信度评分(阈值 0.7),最大 100 条,按置信度排序,受 max_injection_tokens 约束 + +**关键配置**: +| 参数 | 默认值 | 说明 | +|------|--------|------| +| debounce_seconds | 30 | 防抖间隔 | +| max_facts | 100 | 最大事实条数 | +| fact_confidence_threshold | 0.7 | 存储置信度阈值 | +| max_injection_tokens | 2000 | 注入上限 | + +**待实现**: TF-IDF 上下文感知检索(文档已规划,尚未合并) + +### 3.7 消息网关 — IM 通道集成 + +| 通道 | 传输方式 | 流式支持 | +|------|----------|----------| +| Telegram | Bot API (长轮询) | 等待完整响应 | +| Slack | Socket Mode | 等待完整响应 | +| 飞书/Lark | WebSocket | 流式更新消息卡片 | + +所有通道使用**出站连接**,无需公网 IP。支持 `/new`, `/status`, `/models`, `/memory`, `/help` 命令。 + +### 3.8 模型抽象层 + +通过 `config.yaml` 的 `use` 字段动态加载 LangChain 类: + +```yaml +models: + - name: gpt-4 + use: langchain_openai:ChatOpenAI + - name: claude-sonnet-4.6 + use: deerflow.models.claude_provider:ClaudeChatModel # CLI 后端 +``` + +**支持类型**: OpenAI 兼容、Anthropic、DeepSeek、Google Gemini、OpenRouter、Codex CLI、Claude Code OAuth,以及自定义 Provider(通过 Python 反射机制)。 + +### 3.9 MCP 协议集成 + +支持 stdio / SSE / HTTP 三种传输方式的 MCP Server,通过 `extensions_config.json` 配置,使用 `langchain-mcp-adapters` 连接。支持 OAuth 认证和工具缓存。 + +### 3.10 安全护栏 (Guardrails) + +`GuardrailMiddleware` 在工具调用执行前评估: +- 每次工具调用通过 `GuardrailProvider` 评估 +- 拒绝的调用返回错误 ToolMessage,Agent 可自适应调整 +- 支持 fail-closed(默认阻止)和 fail-open(允许通过)模式 + +--- + +## 4. 前端架构 + +### 4.1 技术栈 + +| 技术 | 版本 | 用途 | +|------|------|------| +| Next.js | 16.1.7 | App Router + SSR | +| React | 19.0.0 | UI 框架 | +| Tailwind CSS | 4.0.15 | 样式方案 | +| Radix UI | 多组件 | 无障碍 UI 基础 | +| @xyflow/react | 12.10.0 | 流程图可视化 | +| @tanstack/react-query | 5.x | 服务端状态 | +| better-auth | 1.3+ | 认证 | +| shiki | 3.15.0 | 代码高亮 | +| streamdown | 1.4.0 | 流式 Markdown 渲染 | +| Codemirror | 6.x | 代码编辑器 | + +### 4.2 前端目录结构 + +``` +frontend/src/ +├── app/ # Next.js App Router +│ ├── api/auth/ # better-auth 认证路由 +│ ├── workspace/ # 主工作区 +│ │ ├── chats/ # 聊天页面 +│ │ └── agents/ # 自定义 Agent 管理 +│ └── mock/api/ # Mock API (开发用) +├── components/ +│ ├── ai-elements/ # AI 交互组件 (25+) +│ ├── workspace/ # 工作区组件 +│ ├── landing/ # 着陆页 +│ └── ui/ # 基础 UI 组件 +├── core/ # 核心业务逻辑 +│ ├── agents/ # Agent 管理 +│ ├── api/ # API 客户端 +│ ├── i18n/ # 国际化 +│ ├── memory/ # 记忆管理 +│ ├── mcp/ # MCP 集成 +│ ├── skills/ # 技能管理 +│ ├── streamdown/ # 流式渲染 +│ ├── threads/ # 线程管理 +│ └── tools/ # 工具管理 +└── hooks/ # React Hooks +``` + +### 4.3 前端通信 + +- **Agent 交互**: 通过 `@langchain/langgraph-sdk` 连接 LangGraph Server +- **配置管理**: 通过 Gateway REST API +- **流式响应**: SSE (Server-Sent Events) +- **文件上传**: multipart/form-data → Gateway → 自动转 Markdown + +--- + +## 5. 关键实现原理 + +### 5.1 上下文工程 (Context Engineering) + +DeerFlow 的核心设计哲学是**上下文工程** — 精心控制每次 LLM 调用的输入: + +1. **渐进式技能加载** — 技能不全部注入,只在相关时加载 +2. **Token 预算管理** — SummarizationMiddleware 在接近上限时压缩 +3. **记忆选择性注入** — 按置信度排序,受 token 预算约束 +4. **工具按需暴露** — 通过 `tool_search` 按需发现工具,不全部列出 + +### 5.2 线程隔离 + +每个对话线程拥有独立的: +- workspace 目录 — Agent 工作空间 +- uploads 目录 — 用户上传文件 +- outputs 目录 — 生成的制品 +- 沙箱实例 — 代码执行环境 +- checkpointer — 状态持久化 + +### 5.3 配置热重载 + +`AppConfig` 支持运行时重新加载,Agent 配置、模型列表、工具集等可在不重启的情况下更新。 + +### 5.4 Agent 工厂模式 + +`make_lead_agent()` 是工厂函数,根据运行时配置动态组装: +- 选择模型(支持 thinking/vision 标记) +- 组装中间件链 +- 加载工具集(内置 + MCP + 配置) +- 注入系统提示词(含技能上下文) + +--- + +## 6. 技术栈全景 + +| 层级 | 技术 | 说明 | +|------|------|------| +| **Agent 框架** | LangGraph 1.0.x | 状态图驱动的 Agent 编排 | +| **LLM 抽象** | LangChain 1.2+ | 多模型统一接口 | +| **后端 API** | FastAPI | REST + SSE | +| **前端框架** | Next.js 16 + React 19 | App Router | +| **样式** | Tailwind CSS v4 | 原子化 CSS | +| **沙箱** | Docker / Kubernetes | 容器级隔离 | +| **MCP** | langchain-mcp-adapters | 工具协议集成 | +| **IM 集成** | lark-oapi / slack-sdk / python-telegram-bot | 消息通道 | +| **搜索** | Tavily / Firecrawl / DuckDuckGo / InfoQuest | 信息获取 | +| **认证** | better-auth | Web 端用户认证 | +| **可观测** | LangSmith | 链路追踪 | +| **包管理** | uv (Python) + pnpm (JS) | monorepo workspace | +| **反向代理** | Nginx | 统一入口 | +| **语言要求** | Python 3.12+, Node.js 22+ | — | +| **License** | MIT | 开源 | + +--- + +## 7. 优势分析 + +### 7.1 架构优势 + +1. **中间件链模式** — 9 层有序中间件,横切关注点高度模块化,新增功能只需添加中间件 +2. **渐进式上下文工程** — 不是一股脑注入所有信息,而是按需、按预算精确控制 LLM 输入 +3. **技能热插拔** — SKILL.md 格式简单直观,用户可自行创建和安装技能 +4. **模型无关** — 通过 LangChain 类路径动态加载,支持任意 OpenAI 兼容 API +5. **三层分离** — LangGraph Server / Gateway API / Frontend 各司其职,独立扩展 + +### 7.2 生态优势 + +1. **LangGraph 生态** — 直接受益于 LangChain/LangGraph 社区的持续迭代 +2. **MCP 协议** — 无缝接入 MCP 工具生态 +3. **多 IM 通道** — Telegram/Slack/飞书开箱即用 +4. **字节跳动背书** — 企业级投入,InfoQuest 等增值服务集成 +5. **社区活跃** — GitHub Trending #1,多语言 README,活跃的 Issue/PR + +### 7.3 工程优势 + +1. **完整的测试覆盖** — 69 个测试文件,覆盖核心路径 +2. **多沙箱模式** — 从开发到生产无缝切换 +3. **配置版本管理** — config_version + `make config-upgrade` 平滑升级 +4. **嵌入式 Python 客户端** — `deerflow-harness` 可作为独立包使用 + +--- + +## 8. 局限性分析 + +### 8.1 架构局限 + +1. **Python 性能瓶颈** — Python 3.12 + asyncio 在高并发场景下受限,GIL 限制了真正的并行 +2. **LangGraph 耦合** — 核心编排绑定 LangGraph,迁移成本高 +3. **单 Lead Agent 模型** — 不支持多 Agent 协作(仅 Lead → Sub 单向委托),缺少 Agent 间协商 +4. **文件系统状态** — Checkpointer 默认用 SQLite 本地文件,生产需外部化 + +### 8.2 功能局限 + +1. **记忆系统不成熟** — TF-IDF 上下文感知检索尚未实现,当前仅按置信度排序 +2. **无实时协作** — 不支持多用户同时操作同一线程 +3. **沙箱冷启动** — Docker 容器启动有延迟,影响首次响应时间 +4. **技能质量参差** — 17 个内置技能,深度和完成度不一 +5. **无内置 RAG** — 知识检索依赖外部搜索 API,无本地知识库 + +### 8.3 运维局限 + +1. **依赖链复杂** — LangGraph + LangChain + FastAPI + Docker + Nginx + MCP 等,部署门槛高 +2. **无内置用户管理** — Web 端认证由 better-auth 提供,但无企业级 RBAC +3. **成本控制有限** — Token 用量追踪有,但无细粒度的配额/限流机制 +4. **可观测性依赖外部** — 需要 LangSmith 才能获得完整链路追踪 + +--- + +## 9. 适用场景 + +### 9.1 最佳场景 + +| 场景 | 适配度 | 原因 | +|------|--------|------| +| 深度研究任务 | ⭐⭐⭐⭐⭐ | 原生设计目标,deep-research 技能成熟 | +| 内容生成(PPT/视频/播客) | ⭐⭐⭐⭐⭐ | 丰富的多媒体生成技能 | +| 数据分析与可视化 | ⭐⭐⭐⭐ | chart-visualization + data-analysis 组合 | +| IM Bot 开发 | ⭐⭐⭐⭐ | 三大 IM 通道开箱即用 | +| 编程辅助(代码生成/调试) | ⭐⭐⭐⭐ | 沙箱 + 工具链完善 | + +### 9.2 勉强场景 + +| 场景 | 适配度 | 原因 | +|------|--------|------| +| 企业级 SaaS 平台 | ⭐⭐ | 缺少 RBAC、审计、多租户 | +| 实时协作应用 | ⭐⭐ | 无多用户并发支持 | +| 边缘/离线部署 | ⭐⭐ | 依赖云 API 和 Docker | + +### 9.3 不适用场景 + +| 场景 | 原因 | +|------|------| +| 低延迟实时系统 | Python + LLM API 调用固有延迟 | +| 高并发生产服务 | 单进程 + GIL 限制 | +| 安全合规要求高的环境 | 沙箱隔离非零信任 | + +--- + +## 10. 与同类项目对比 + +| 维度 | DeerFlow 2.0 | OpenHands | CrewAI | AutoGen | Devin | +|------|-------------|-----------|--------|---------|-------| +| **定位** | Super Agent Harness | 软件开发 Agent | 多 Agent 框架 | 多 Agent 对话 | 自主编程 Agent | +| **编排模型** | Lead + Sub (LangGraph) | 单 Agent + Action | Crew + Task | GroupChat | 单 Agent | +| **沙箱隔离** | Docker/K8s | Docker | 无内置 | 无内置 | 自研 | +| **技能扩展** | SKILL.md 热插拔 | 无 | 工具定义 | 函数注册 | 无 | +| **IM 集成** | 3 通道 | 无 | 无 | 无 | 无 | +| **记忆系统** | LLM 提取 + JSON | 无 | 无 | 无 | 有 | +| **开源** | MIT | MIT | MIT | MIT | 不开源 | +| **语言** | Python | Python | Python | Python | 未知 | +| **背书** | 字节跳动 | All Hands AI | CrewAI Inc | Microsoft | Cognition | + +--- + +## 11. 未来发展方向(推断) + +### 11.1 短期 (3-6 个月) + +1. **记忆系统增强** — TF-IDF 上下文感知检索合并,记忆质量提升 +2. **更多 IM 通道** — 微信、钉钉等国内平台集成 +3. **技能市场** — 社区技能共享与评分系统 +4. **多 Agent 协作** — 从单向委托升级为多 Agent 协商 + +### 11.2 中期 (6-12 个月) + +1. **企业级功能** — RBAC、审计日志、多租户、配额管理 +2. **RAG 集成** — 本地知识库支持,减少对外部搜索的依赖 +3. **模型微调** — 针对 Agent 任务的专项微调指南 +4. **多模态增强** — 更强的图像/视频理解与生成 + +### 11.3 长期 (12+ 个月) + +1. **Agent 操作系统** — 从工具到真正的自主 Agent 平台 +2. **去中心化** — 支持 Agent-to-Agent 通信协议 +3. **端侧部署** — 支持模型本地化运行,降低 API 依赖 + +--- + +## 12. 对 ZCLAW 的借鉴价值 + +| DeerFlow 设计 | 借鉴价值 | 实施难度 | +|---------------|----------|----------| +| **中间件链模式** | Agent 执行前的横切关注点模块化,ZCLAW Kernel 可引入类似模式 | 中 | +| **渐进式技能加载** | SKILL.md 按需注入而非全量,减少 Token 浪费 | 低 | +| **LLM 驱动记忆提取** | 用 LLM 从对话中提取结构化记忆,比规则提取更鲁棒 | 中 | +| **沙箱虚拟路径** | 统一的路径抽象,代码与平台无关 | 高 | +| **IM 通道架构** | Channel 抽象 + MessageBus 模式,易于扩展新通道 | 低 | +| **模型动态加载** | `use` 字段 + 反射机制,无需硬编码 Provider | 中 | +| **Guardrail 安全护栏** | 工具调用前评估,可配置的拦截策略 | 中 | + +**核心差异**: DeerFlow 是 Python 服务端架构,ZCLAW 是 Rust + TS 桌面架构。技术栈不同,但在 **Agent 编排模式、技能系统设计、记忆系统架构** 等领域无关的设计层面,DeerFlow 提供了成熟的参考。 + +--- + +## 13. 项目关键数据 + +| 指标 | 值 | +|------|-----| +| GitHub Stars | 20k+ (2026-03 Trending #1) | +| License | MIT | +| 主要语言 | Python (后端), TypeScript (前端) | +| Python 版本 | 3.12+ | +| Node.js 版本 | 22+ | +| 后端源文件 | 124 .py (harness) | +| 前端源文件 | 225 .ts/.tsx | +| 测试文件 | 69 .py | +| 内置技能 | 17 个 | +| 支持的 IM | Telegram, Slack, 飞书 | +| 沙箱模式 | Local / Docker / Kubernetes | +| 端口 | 2026 (Nginx), 2024 (LangGraph), 8001 (Gateway), 3000 (Frontend) | + +--- + +*本分析基于 DeerFlow 2.0 main 分支 (截至 2026-03-29) 的源代码和文档。* diff --git a/start-all.ps1 b/start-all.ps1 index 4f15e0a..985fd5f 100644 --- a/start-all.ps1 +++ b/start-all.ps1 @@ -1,5 +1,5 @@ # ZCLAW Full Stack Start Script -# Starts: PostgreSQL (Docker) -> SaaS Backend -> ChromeDriver (optional) -> Tauri Desktop +# Starts: PostgreSQL (Docker) -> SaaS Backend -> Admin Web -> ChromeDriver (optional) -> Tauri Desktop # # NOTE: ZCLAW now uses internal Kernel (zclaw-kernel) for all operations. # No external ZCLAW runtime is required. @@ -33,7 +33,7 @@ Usage: .\start-all.ps1 [options] Options: -DesktopOnly Start desktop only (skip ChromeDriver + SaaS + PostgreSQL) -NoBrowser Skip ChromeDriver startup - -NoSaas Skip PostgreSQL + SaaS backend startup + -NoSaas Skip PostgreSQL + SaaS backend + Admin dashboard startup -Dev Development mode (hot reload) -Stop Stop all services -Help Show this help @@ -59,13 +59,16 @@ if ($Stop) { Get-Process -Name "chromedriver" -ErrorAction SilentlyContinue | Stop-Process -Force ok "ChromeDriver stopped" - # Stop SaaS backend - Get-Process -Name "zclaw-saas" -ErrorAction SilentlyContinue | Stop-Process -Force + # Stop SaaS backend (kill process tree) + Get-Process -Name "zclaw-saas" -ErrorAction SilentlyContinue | ForEach-Object { + & taskkill /T /F /PID $_.Id 2>$null + ok "Stopped SaaS backend process tree (PID: $($_.Id))" + } $port8080 = netstat -ano | Select-String ":8080.*LISTENING" if ($port8080) { $pid8080 = ($port8080 -split '\s+')[-1] if ($pid8080 -match '^\d+$') { - Stop-Process -Id $pid8080 -Force -ErrorAction SilentlyContinue + & taskkill /T /F /PID $pid8080 2>$null ok "Stopped SaaS backend on port 8080 (PID: $pid8080)" } } @@ -75,11 +78,21 @@ if ($Stop) { if ($port4200) { $pid4200 = ($port4200 -split '\s+')[-1] if ($pid4200 -match '^\d+$') { - Stop-Process -Id $pid4200 -Force -ErrorAction SilentlyContinue + & taskkill /T /F /PID $pid4200 2>$null ok "Stopped process on port 4200 (PID: $pid4200)" } } + # Stop Admin dev server (kill process tree to ensure node.exe children die) + $port3000 = netstat -ano | Select-String ":3000.*LISTENING" + if ($port3000) { + $pid3000 = ($port3000 -split '\s+')[-1] + if ($pid3000 -match '^\d+$') { + & taskkill /T /F /PID $pid3000 2>$null + ok "Stopped Admin dev server on port 3000 (PID: $pid3000)" + } + } + # Stop Tauri/ZClaw Get-Process -Name "ZClaw" -ErrorAction SilentlyContinue | Stop-Process -Force Get-Process -Name "desktop" -ErrorAction SilentlyContinue | Stop-Process -Force @@ -90,7 +103,7 @@ if ($Stop) { if ($port1420) { $pid1420 = ($port1420 -split '\s+')[-1] if ($pid1420 -match '^\d+$') { - Stop-Process -Id $pid1420 -Force -ErrorAction SilentlyContinue + & taskkill /T /F /PID $pid1420 2>$null ok "Killed process on port 1420 (PID: $pid1420)" } } @@ -110,10 +123,28 @@ $Jobs = @() function Cleanup { info "Cleaning up..." + # Kill tracked process trees (parent + all children) foreach ($job in $Jobs) { if ($job -and !$job.HasExited) { - info "Stopping $($job.ProcessName) (PID: $($job.Id))" - try { $job.Kill() } catch {} + info "Stopping $($job.ProcessName) (PID: $($job.Id)) and child processes" + try { + # taskkill /T kills the entire process tree, not just the parent + & taskkill /T /F /PID $job.Id 2>$null + if (!$job.HasExited) { $job.Kill() } + } catch { + try { $job.Kill() } catch {} + } + } + } + # Fallback: kill processes by known ports + foreach ($port in @(8080, 3000)) { + $listening = netstat -ano | Select-String ":${port}.*LISTENING" + if ($listening) { + $pid = ($listening -split '\s+')[-1] + if ($pid -match '^\d+$') { + info "Killing orphan process on port $port (PID: $pid)" + & taskkill /T /F /PID $pid 2>$null + } } } } @@ -203,7 +234,48 @@ if (-not $NoSaas) { Write-Host "" -# 3. ChromeDriver (optional - for Browser Hand automation) +# 3. Admin Web (Next.js management dashboard on port 3000) +if (-not $NoSaas) { + info "Checking Admin dashboard..." + + $port3000 = netstat -ano | Select-String ":3000.*LISTENING" + if ($port3000) { + $pid3000 = ($port3000 -split '\s+')[-1] + if ($pid3000 -match '^\d+$') { + ok "Admin dashboard already running on port 3000 (PID: $pid3000)" + } + } else { + if (Test-Path "$ScriptDir\admin\package.json") { + info "Starting Admin dashboard on port 3000..." + Set-Location "$ScriptDir\admin" + + if ($Dev) { + $proc = Start-Process -FilePath "cmd.exe" -ArgumentList "/c cd /d `"$ScriptDir\admin`" && pnpm dev" -PassThru -WindowStyle Minimized + } else { + $proc = Start-Process -FilePath "cmd.exe" -ArgumentList "/c cd /d `"$ScriptDir\admin`" && pnpm dev" -PassThru -WindowStyle Minimized + } + $Jobs += $proc + Set-Location $ScriptDir + Start-Sleep -Seconds 5 + + $port3000Check = netstat -ano | Select-String ":3000.*LISTENING" + if ($port3000Check) { + ok "Admin dashboard started on port 3000 (PID: $($proc.Id))" + } else { + warn "Admin dashboard may still be starting. Check http://localhost:3000" + } + } else { + warn "Admin directory not found. Skipping." + } + } +} else { + info "Skipping Admin dashboard" +} + +Write-Host "" + +# 4. ChromeDriver (optional - for Browser Hand automation) + if (-not $NoBrowser) { info "Checking ChromeDriver..." @@ -236,7 +308,7 @@ if (-not $NoBrowser) { Write-Host "" -# 4. Start Tauri Desktop +# 5. Start Tauri Desktop info "Starting ZCLAW Desktop..." Set-Location "$ScriptDir/desktop" diff --git a/target/.rustc_info.json b/target/.rustc_info.json index cfae1d8..62a267e 100644 --- a/target/.rustc_info.json +++ b/target/.rustc_info.json @@ -1 +1 @@ -{"rustc_fingerprint":9233652427518751716,"outputs":{"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.93.1 (01f6ddf75 2026-02-11)\nbinary: rustc\ncommit-hash: 01f6ddf7588f42ae2d7eb0a2f21d44e8e96674cf\ncommit-date: 2026-02-11\nhost: x86_64-pc-windows-msvc\nrelease: 1.93.1\nLLVM version: 21.1.8\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\szend\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\npacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""},"12004014463585500860":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\szend\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\npacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""}},"successes":{}} \ No newline at end of file +{"rustc_fingerprint":5915500824126575890,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\szend\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\npacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""},"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.93.1 (01f6ddf75 2026-02-11)\nbinary: rustc\ncommit-hash: 01f6ddf7588f42ae2d7eb0a2f21d44e8e96674cf\ncommit-date: 2026-02-11\nhost: x86_64-pc-windows-msvc\nrelease: 1.93.1\nLLVM version: 21.1.8\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/target/flycheck0/stderr b/target/flycheck0/stderr index 57d0bb5..599fbc9 100644 --- a/target/flycheck0/stderr +++ b/target/flycheck0/stderr @@ -1,27 +1,5 @@ - Blocking waiting for file lock on build directory - 26.141648000s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dependency on `zclaw_runtime` is newer than we are 13419189849.835904700s > 13419188800.386462300s "G:\\ZClaw_openfang\\crates\\zclaw-kernel" - 26.143007100s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dependency on `zclaw_runtime` is newer than we are 13419189849.835904700s > 13419188801.175314500s "G:\\ZClaw_openfang\\crates\\zclaw-pipeline" - 26.143125500s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dependency on `zclaw_runtime` is newer than we are 13419189849.835904700s > 13419188802.111321400s "G:\\ZClaw_openfang\\desktop\\src-tauri" - 26.167874100s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: false }/TargetInner { ..: lib_target("desktop_lib", ["staticlib", "cdylib", "rlib"], "G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs", Edition2021) } - 26.168892700s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_runtime", dep_mtime: FileTime { seconds: 13419189849, nanos: 835904700 }, max_mtime: FileTime { seconds: 13419188802, nanos: 111321400 } }) - 26.432021100s INFO prepare_target{force=false package_id=zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel) target="zclaw_kernel"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_kernel", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-kernel\\src\\lib.rs", Edition2021) } - 26.432130600s INFO prepare_target{force=false package_id=zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel) target="zclaw_kernel"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_runtime", dep_mtime: FileTime { seconds: 13419189849, nanos: 835904700 }, max_mtime: FileTime { seconds: 13419188800, nanos: 386462300 } }) - 26.491595500s INFO prepare_target{force=false package_id=zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline) target="zclaw_pipeline"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_pipeline", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\src\\lib.rs", Edition2021) } - 26.491640500s INFO prepare_target{force=false package_id=zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline) target="zclaw_pipeline"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_runtime", dep_mtime: FileTime { seconds: 13419189849, nanos: 835904700 }, max_mtime: FileTime { seconds: 13419188801, nanos: 175314500 } }) - 26.494184300s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dependency on `zclaw_runtime` is newer than we are 13419189849.835904700s > 13419188802.111321400s "G:\\ZClaw_openfang\\desktop\\src-tauri" - 26.516629900s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: true }/TargetInner { ..: lib_target("desktop_lib", ["staticlib", "cdylib", "rlib"], "G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs", Edition2021) } - 26.516701400s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_runtime", dep_mtime: FileTime { seconds: 13419189849, nanos: 835904700 }, max_mtime: FileTime { seconds: 13419188802, nanos: 111321400 } }) - 26.533083700s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: dependency on `zclaw_runtime` is newer than we are 13419189849.835904700s > 13419188810.586678400s "G:\\ZClaw_openfang\\desktop\\src-tauri" - 26.542060700s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: false }/TargetInner { name: "desktop", doc: true, ..: with_path("G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\main.rs", Edition2021) } - 26.542108400s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_runtime", dep_mtime: FileTime { seconds: 13419189849, nanos: 835904700 }, max_mtime: FileTime { seconds: 13419188810, nanos: 586678400 } }) - 26.546169800s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: dependency on `zclaw_runtime` is newer than we are 13419189849.835904700s > 13419188810.586678400s "G:\\ZClaw_openfang\\desktop\\src-tauri" - 26.551831400s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: true }/TargetInner { name: "desktop", doc: true, ..: with_path("G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\main.rs", Edition2021) } - 26.551892700s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_runtime", dep_mtime: FileTime { seconds: 13419189849, nanos: 835904700 }, max_mtime: FileTime { seconds: 13419188810, nanos: 586678400 } }) - 26.581214400s INFO prepare_target{force=false package_id=zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel) target="zclaw_kernel"}: cargo::core::compiler::fingerprint: dependency on `zclaw_runtime` is newer than we are 13419189849.835904700s > 13419188800.388008800s "G:\\ZClaw_openfang\\crates\\zclaw-kernel" - 26.608115700s INFO prepare_target{force=false package_id=zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel) target="zclaw_kernel"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_kernel", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-kernel\\src\\lib.rs", Edition2021) } - 26.608166000s INFO prepare_target{force=false package_id=zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel) target="zclaw_kernel"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_runtime", dep_mtime: FileTime { seconds: 13419189849, nanos: 835904700 }, max_mtime: FileTime { seconds: 13419188800, nanos: 388008800 } }) - 26.611484000s INFO prepare_target{force=false package_id=zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory) target="zclaw_memory"}: cargo::core::compiler::fingerprint: fingerprint error for zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_memory", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-memory\\src\\lib.rs", Edition2021) } - 26.611511100s INFO prepare_target{force=false package_id=zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory) target="zclaw_memory"}: cargo::core::compiler::fingerprint: err: failed to read `G:\ZClaw_openfang\target\debug\.fingerprint\zclaw-memory-258e8bafe81b73c9\test-lib-zclaw_memory` + 0.868534600s INFO prepare_target{force=false package_id=zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory) target="zclaw_memory"}: cargo::core::compiler::fingerprint: fingerprint error for zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_memory", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-memory\\src\\lib.rs", Edition2021) } + 0.868582700s INFO prepare_target{force=false package_id=zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory) target="zclaw_memory"}: cargo::core::compiler::fingerprint: err: failed to read `G:\ZClaw_openfang\target\debug\.fingerprint\zclaw-memory-258e8bafe81b73c9\test-lib-zclaw_memory` Caused by: 系统找不到指定的文件。 (os error 2) @@ -48,47 +26,39 @@ Stack backtrace: 18: git_midx_writer_dump 19: BaseThreadInitThunk 20: RtlUserThreadStart - 26.634729900s INFO prepare_target{force=false package_id=zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline) target="zclaw_pipeline"}: cargo::core::compiler::fingerprint: dependency on `zclaw_runtime` is newer than we are 13419189849.835904700s > 13419188801.175314500s "G:\\ZClaw_openfang\\crates\\zclaw-pipeline" - 26.635409500s INFO prepare_target{force=false package_id=zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline) target="zclaw_pipeline"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_pipeline", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\src\\lib.rs", Edition2021) } - 26.635438300s INFO prepare_target{force=false package_id=zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline) target="zclaw_pipeline"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_runtime", dep_mtime: FileTime { seconds: 13419189849, nanos: 835904700 }, max_mtime: FileTime { seconds: 13419188801, nanos: 175314500 } }) - 26.760317000s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: stale: changed "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\relay\\handlers.rs" - 26.760361200s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: (vs) "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\zclaw-saas-24b5f21f9faf9a21\\dep-lib-zclaw_saas" - 26.760368700s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: FileTime { seconds: 13419189846, nanos: 514689800 } < FileTime { seconds: 13419222793, nanos: 303946200 } - 26.761464400s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_saas", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs", Edition2021) } - 26.761496600s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(ChangedFile { reference: "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\zclaw-saas-24b5f21f9faf9a21\\dep-lib-zclaw_saas", reference_mtime: FileTime { seconds: 13419189846, nanos: 514689800 }, stale: "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\relay\\handlers.rs", stale_mtime: FileTime { seconds: 13419222793, nanos: 303946200 } })) - 26.777582700s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: stale: changed "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\role\\mod.rs" - 26.777612500s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: (vs) "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\zclaw-saas-bb901b542dca6f4e\\dep-test-lib-zclaw_saas" - 26.777623600s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: FileTime { seconds: 13419189846, nanos: 514689800 } < FileTime { seconds: 13419224259, nanos: 500558800 } - 26.778587000s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_saas", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs", Edition2021) } - 26.778635400s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(ChangedFile { reference: "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\zclaw-saas-bb901b542dca6f4e\\dep-test-lib-zclaw_saas", reference_mtime: FileTime { seconds: 13419189846, nanos: 514689800 }, stale: "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\role\\mod.rs", stale_mtime: FileTime { seconds: 13419224259, nanos: 500558800 } })) - 26.788720900s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw-saas"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: false }/TargetInner { name: "zclaw-saas", doc: true, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\main.rs", Edition2021) } - 26.788768300s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw-saas"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) - 26.802265500s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw-saas"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { name: "zclaw-saas", doc: true, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\main.rs", Edition2021) } - 26.802321100s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw-saas"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) - 26.817890600s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="account_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "account_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\account_test.rs", Edition2021) } - 26.817958500s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="account_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) - 26.849051600s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="agent_template_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "agent_template_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\agent_template_test.rs", Edition2021) } - 26.849149700s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="agent_template_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) - 26.887225300s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="auth_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "auth_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\auth_test.rs", Edition2021) } - 26.887279900s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="auth_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) - 26.917072200s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="migration_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "migration_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\migration_test.rs", Edition2021) } - 26.917132300s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="migration_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) - 26.927571400s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="model_config_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "model_config_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\model_config_test.rs", Edition2021) } - 26.927621500s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="model_config_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) - 26.939521500s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="prompt_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "prompt_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\prompt_test.rs", Edition2021) } - 26.939571900s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="prompt_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) - 26.952870300s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="relay_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "relay_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\relay_test.rs", Edition2021) } - 26.952917600s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="relay_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) - 26.961644800s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="role_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "role_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\role_test.rs", Edition2021) } - 26.961691600s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="role_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) - 26.973427300s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="telemetry_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "telemetry_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\telemetry_test.rs", Edition2021) } - 26.973480100s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="telemetry_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) + 0.891938300s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: stale: changed "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\model_config\\service.rs" + 0.891979400s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: (vs) "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\zclaw-saas-72a9fbf3f830e69e\\dep-lib-zclaw_saas" + 0.891987700s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: FileTime { seconds: 13419244492, nanos: 580024000 } < FileTime { seconds: 13419244569, nanos: 751721700 } + 0.892264600s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_saas", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs", Edition2021) } + 0.892299500s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(ChangedFile { reference: "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\zclaw-saas-72a9fbf3f830e69e\\dep-lib-zclaw_saas", reference_mtime: FileTime { seconds: 13419244492, nanos: 580024000 }, stale: "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\model_config\\service.rs", stale_mtime: FileTime { seconds: 13419244569, nanos: 751721700 } })) + 0.903620200s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: stale: changed "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\prompt\\service.rs" + 0.903645300s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: (vs) "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\zclaw-saas-bdfcbb25abc6c767\\dep-test-lib-zclaw_saas" + 0.903652200s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: FileTime { seconds: 13419244492, nanos: 590547500 } < FileTime { seconds: 13419244749, nanos: 30511300 } + 0.903823000s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_saas", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs", Edition2021) } + 0.903848300s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw_saas"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(ChangedFile { reference: "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\zclaw-saas-bdfcbb25abc6c767\\dep-test-lib-zclaw_saas", reference_mtime: FileTime { seconds: 13419244492, nanos: 590547500 }, stale: "G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\prompt\\service.rs", stale_mtime: FileTime { seconds: 13419244749, nanos: 30511300 } })) + 0.907258400s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw-saas"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: false }/TargetInner { name: "zclaw-saas", doc: true, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\main.rs", Edition2021) } + 0.907293400s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw-saas"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) + 0.909141400s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw-saas"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { name: "zclaw-saas", doc: true, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\main.rs", Edition2021) } + 0.909162100s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="zclaw-saas"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) + 0.910736700s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="account_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "account_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\account_test.rs", Edition2021) } + 0.910755600s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="account_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) + 0.912894200s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="agent_template_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "agent_template_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\agent_template_test.rs", Edition2021) } + 0.912920100s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="agent_template_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) + 0.914486400s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="auth_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "auth_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\auth_test.rs", Edition2021) } + 0.914504700s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="auth_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) + 0.917159500s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="migration_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "migration_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\migration_test.rs", Edition2021) } + 0.917191300s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="migration_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) + 0.919469500s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="model_config_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "model_config_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\model_config_test.rs", Edition2021) } + 0.919497700s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="model_config_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) + 0.922689500s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="prompt_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "prompt_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\prompt_test.rs", Edition2021) } + 0.922771400s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="prompt_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) + 0.926483800s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="relay_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "relay_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\relay_test.rs", Edition2021) } + 0.926528800s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="relay_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) + 0.929864100s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="role_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "role_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\role_test.rs", Edition2021) } + 0.929898400s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="role_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) + 0.931901900s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="telemetry_test"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas)/Check { test: true }/TargetInner { kind: "test", name: "telemetry_test", benched: false, ..: with_path("G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\telemetry_test.rs", Edition2021) } + 0.931925900s INFO prepare_target{force=false package_id=zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) target="telemetry_test"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_saas" }) Checking zclaw-saas v0.1.0 (G:\ZClaw_openfang\crates\zclaw-saas) - Checking zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel) Checking zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory) error: could not compile `zclaw-memory` (lib test) due to 1 previous error warning: build failed, waiting for other jobs to finish... - Checking zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline) - Checking desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) -error: could not compile `zclaw-saas` (lib) due to 8 previous errors; 8 warnings emitted -error: could not compile `zclaw-saas` (lib test) due to 8 previous errors; 12 warnings emitted diff --git a/target/flycheck0/stdout b/target/flycheck0/stdout index e6c8a80..fbd11fd 100644 --- a/target/flycheck0/stdout +++ b/target/flycheck0/stdout @@ -1,33 +1,33 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.106\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.106\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro","span-locations"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\proc-macro2-06dc2396c1f197e2\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\proc-macro2-06dc2396c1f197e2\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106","linked_libs":[],"linked_paths":[],"cfgs":["span_locations","wrap_proc_macro","proc_macro_span_location","proc_macro_span_file"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\proc-macro2-ae48c250ff580eb1\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-ident-1.0.24\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_ident","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-ident-1.0.24\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_ident-36e3cd8601dbfd38.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_ident-36e3cd8601dbfd38.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quote-1.0.45\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\quote-1.0.45\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\quote-177ac2d7e07a0db1\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\quote-177ac2d7e07a0db1\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-ident-1.0.24\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_ident","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-ident-1.0.24\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_ident-36e3cd8601dbfd38.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_ident-36e3cd8601dbfd38.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-1.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_if","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-1.0.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcfg_if-f8bf42d2fc0c3243.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-1.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_if","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfg-if-1.0.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcfg_if-a78d688d0b5ce531.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcfg_if-a78d688d0b5ce531.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","derive","rc","serde_derive","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\serde-6b174072b396341e\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\serde-6b174072b396341e\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\version_check-0.9.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"version_check","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\version_check-0.9.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libversion_check-5641bfb78c234d59.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libversion_check-5641bfb78c234d59.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.47","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.47\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.47\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\zerocopy-b6cd2160febb6b9c\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\zerocopy-b6cd2160febb6b9c\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.12\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.12\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\parking_lot_core-9f9d6a8c2245025f\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\parking_lot_core-9f9d6a8c2245025f\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-link@0.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_link","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_link-a2622e52308cdcaa.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","rc","result","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\serde_core-b75b5279c65f060a\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\serde_core-b75b5279c65f060a\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.12\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.12\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\parking_lot_core-9f9d6a8c2245025f\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\parking_lot_core-9f9d6a8c2245025f\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\zmij-1eccd671b92d37aa\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\zmij-1eccd671b92d37aa\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","rc","result","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\serde_core-3fa380c495911e7a\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\serde_core-3fa380c495911e7a\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libitoa-120546458fa616c5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.1.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.1.2\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\icu_properties_data-63a161b8f319de4d\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\icu_properties_data-63a161b8f319de4d\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.8.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmemchr-716ac2addfc12d2e.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.0\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\typenum-5943df3e0a4b0a7d\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\typenum-5943df3e0a4b0a7d\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.106\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.106\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro","span-locations"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libproc_macro2-130e4624f300a408.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libproc_macro2-130e4624f300a408.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\quote-390f36d92becc034\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.106\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro2-1.0.106\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro","span-locations"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libproc_macro2-130e4624f300a408.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libproc_macro2-130e4624f300a408.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":["if_docsrs_then_no_serde_core"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\serde-64f714cb3b5017d6\\out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.47","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\zerocopy-c3bf789cf30b6239\\out"} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\serde_core-e836fc67a62c17b5\\out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\parking_lot_core-7be78fd9d7cb8cf7\\out"} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\serde_core-1d27a9e6e32d83b6\\out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\serde_core-e836fc67a62c17b5\\out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\zmij-8c3b467cd6d7dfae\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\autocfg-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"autocfg","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\autocfg-1.5.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libautocfg-0d9fab24a14ca87a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libautocfg-0d9fab24a14ca87a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.1.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.1.1\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\icu_normalizer_data-cca3bb706176ac7a\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\icu_normalizer_data-cca3bb706176ac7a\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.1.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.1.2\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\icu_properties_data-63a161b8f319de4d\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\icu_properties_data-63a161b8f319de4d\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\serde_core-1d27a9e6e32d83b6\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.61.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.61.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.61.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Wdk","Wdk_Foundation","Wdk_Storage","Wdk_Storage_FileSystem","Wdk_System","Wdk_System_IO","Win32","Win32_Foundation","Win32_Globalization","Win32_Graphics","Win32_Graphics_Gdi","Win32_Networking","Win32_Networking_WinSock","Win32_Security","Win32_Security_Authentication","Win32_Security_Authentication_Identity","Win32_Security_Credentials","Win32_Security_Cryptography","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_Com","Win32_System_Console","Win32_System_IO","Win32_System_LibraryLoader","Win32_System_Memory","Win32_System_Pipes","Win32_System_SystemInformation","Win32_System_SystemServices","Win32_System_Threading","Win32_System_WindowsProgramming","Win32_UI","Win32_UI_Shell","Win32_UI_WindowsAndMessaging","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_sys-877703357b19239d.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\typenum-8f704f1d7247707d\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.1.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.1.1\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\icu_normalizer_data-cca3bb706176ac7a\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\icu_normalizer_data-cca3bb706176ac7a\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.0\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\typenum-5943df3e0a4b0a7d\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\typenum-5943df3e0a4b0a7d\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\autocfg-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"autocfg","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\autocfg-1.5.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libautocfg-0d9fab24a14ca87a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libautocfg-0d9fab24a14ca87a.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\icu_properties_data-c4b5c393a11743f1\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\generic-array-0.14.7\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\generic-array-0.14.7\\build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\generic-array-0e03c6f3ce2252d0\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\generic-array-0e03c6f3ce2252d0\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smallvec-1.15.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smallvec-1.15.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const_generics","const_new"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsmallvec-636b91b246773718.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytes-1.11.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytes","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytes-1.11.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbytes-d1b03353c603f31d.rmeta"],"executable":null,"fresh":true} @@ -36,118 +36,118 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.47","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.47\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerocopy","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.47\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzerocopy-2942d482d8fca938.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libzerocopy-2942d482d8fca938.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_core-1.0.228\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","rc","result","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_core-ae26219bdac07cd3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_core-ae26219bdac07cd3.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\icu_normalizer_data-de0cf2248e5d7630\\out"} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\icu_properties_data-c4b5c393a11743f1\\out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\typenum-8f704f1d7247707d\\out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","linked_libs":[],"linked_paths":[],"cfgs":["relaxed_coherence"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\generic-array-6abe7ad366aeb67b\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-lite-0.2.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_project_lite","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-lite-0.2.17\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpin_project_lite-8e269f70c50e6f50.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\once_cell-1.21.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"once_cell","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\once_cell-1.21.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","race","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libonce_cell-41fd858d4fca1fb4.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\find-msvc-tools-0.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"find_msvc_tools","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\find-msvc-tools-0.1.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfind_msvc_tools-f5a9545e3976137a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfind_msvc_tools-f5a9545e3976137a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\shlex-1.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"shlex","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\shlex-1.3.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libshlex-d72cb1e9a55c65a7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libshlex-d72cb1e9a55c65a7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\find-msvc-tools-0.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"find_msvc_tools","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\find-msvc-tools-0.1.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfind_msvc_tools-f5a9545e3976137a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfind_msvc_tools-f5a9545e3976137a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.2.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.2.17\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libgetrandom-1b45214ccff731e4.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.2.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.2.17\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libgetrandom-08c6b8b82dfb1846.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libgetrandom-08c6b8b82dfb1846.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-link@0.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_link","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_link-6369c7b992860a42.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_link-6369c7b992860a42.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.4.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.4.2\\build.rs","edition":"2024","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\getrandom-6c3e784948b3c6a4\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\getrandom-6c3e784948b3c6a4\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-1.2.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libstable_deref_trait-2109d0463108247c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libstable_deref_trait-2109d0463108247c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libscopeguard-d9a53cd0a4d41fe6.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-2.0.117\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-2.0.117\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","visit","visit-mut"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsyn-0cabe4f196b14e8c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsyn-0cabe4f196b14e8c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ppv-lite86-0.2.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ppv_lite86","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ppv-lite86-0.2.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libppv_lite86-eb0f2bdf3924db8d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libppv_lite86-eb0f2bdf3924db8d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cc@1.2.57","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cc-1.2.57\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cc-1.2.57\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcc-3c71c57f35de0f9a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcc-3c71c57f35de0f9a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.6.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.6.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand_core-83bcf7d71cba9ac8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\librand_core-83bcf7d71cba9ac8.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\getrandom-18eba346e5190c39\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.6.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.6.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand_core-83bcf7d71cba9ac8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\librand_core-83bcf7d71cba9ac8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["atomic_usize","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblock_api-4c25f8f182bc99cb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.18\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.18\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\thiserror-d91cac4054dfb877\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\thiserror-d91cac4054dfb877\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libscopeguard-d9a53cd0a4d41fe6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-1.2.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libstable_deref_trait-2109d0463108247c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libstable_deref_trait-2109d0463108247c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#log@0.4.29","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.29\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.29\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblog-71b2ce0970cd1bb1.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_core-cc2616aefd3bf110.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smallvec-1.15.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smallvec-1.15.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const_generics"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsmallvec-20fd4b2edc314446.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsmallvec-20fd4b2edc314446.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.12\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libparking_lot_core-a74c5a9af2fc2c86.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.8.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmemchr-a9dab70b81448764.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libmemchr-a9dab70b81448764.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smallvec-1.15.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\smallvec-1.15.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const_generics"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsmallvec-20fd4b2edc314446.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsmallvec-20fd4b2edc314446.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_core-cc2616aefd3bf110.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\thiserror-473b00ea605eeb23\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\thiserror-473b00ea605eeb23\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\memchr-2.8.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmemchr-a9dab70b81448764.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libmemchr-a9dab70b81448764.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.61.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.61.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.61.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Wdk","Wdk_Foundation","Wdk_Storage","Wdk_Storage_FileSystem","Wdk_System","Wdk_System_IO","Win32","Win32_Foundation","Win32_Globalization","Win32_Networking","Win32_Networking_WinSock","Win32_Security","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_Com","Win32_System_Console","Win32_System_IO","Win32_System_Pipes","Win32_System_SystemInformation","Win32_System_SystemServices","Win32_System_Threading","Win32_System_WindowsProgramming","Win32_UI","Win32_UI_Shell","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_sys-a735ddb9133f88b8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_sys-a735ddb9133f88b8.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stable_deref_trait-1.2.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libstable_deref_trait-7e3da126ecc8b10f.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-core-0.1.36\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-core-0.1.36\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","once_cell","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtracing_core-6f4a7fadd7c7b29b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_derive-1.0.228\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_derive","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_derive-1.0.228\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\serde_derive-fbf3bd5cf3ba2446.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\serde_derive-fbf3bd5cf3ba2446.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\serde_derive-fbf3bd5cf3ba2446.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\serde_derive-fbf3bd5cf3ba2446.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\synstructure-0.13.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"synstructure","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\synstructure-0.13.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsynstructure-d2e749510c83eb78.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsynstructure-d2e749510c83eb78.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-derive-0.11.2\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zerovec_derive","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-derive-0.11.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\zerovec_derive-db31bbe8ed7ec097.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\zerovec_derive-db31bbe8ed7ec097.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\zerovec_derive-db31bbe8ed7ec097.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\zerovec_derive-db31bbe8ed7ec097.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\displaydoc-0.2.5\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"displaydoc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\displaydoc-0.2.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\displaydoc-4ab172f1e86fe946.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\displaydoc-4ab172f1e86fe946.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\displaydoc-4ab172f1e86fe946.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\displaydoc-4ab172f1e86fe946.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.3.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand_chacha-75afa3740210d5f6.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\librand_chacha-75afa3740210d5f6.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["atomic_usize","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblock_api-4c25f8f182bc99cb.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\thiserror-ee51ed8556e59dc9\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-2.0.18\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"thiserror_impl","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-2.0.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\thiserror_impl-1e7c0b66ad664442.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\thiserror_impl-1e7c0b66ad664442.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\thiserror_impl-1e7c0b66ad664442.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\thiserror_impl-1e7c0b66ad664442.pdb"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\thiserror-ee51ed8556e59dc9\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.31","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-attributes-0.1.31\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tracing_attributes","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-attributes-0.1.31\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\tracing_attributes-405bf9af72fc22b8.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\tracing_attributes-405bf9af72fc22b8.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\tracing_attributes-405bf9af72fc22b8.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\tracing_attributes-405bf9af72fc22b8.pdb"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\thiserror-1d4aa1d4aa501a19\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libparking_lot-0b0810dda7292357.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-1.0.69\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"thiserror_impl","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-impl-1.0.69\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\thiserror_impl-4bbe08ad9fc61b61.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\thiserror_impl-4bbe08ad9fc61b61.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\thiserror_impl-4bbe08ad9fc61b61.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\thiserror_impl-4bbe08ad9fc61b61.pdb"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\thiserror-1d4aa1d4aa501a19\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-macros-2.6.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tokio_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-macros-2.6.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\tokio_macros-507636ed77144730.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\tokio_macros-507636ed77144730.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\tokio_macros-507636ed77144730.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\tokio_macros-507636ed77144730.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-core-0.1.36\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-core-0.1.36\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","once_cell","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtracing_core-6f4a7fadd7c7b29b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mio-1.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mio","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mio-1.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["net","os-ext","os-poll"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmio-735276fa78cf9a5d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\socket2-0.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"socket2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\socket2-0.6.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["all"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsocket2-cea3d48613f5d292.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\subtle-2.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"subtle","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\subtle-2.6.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsubtle-2d97cd8746d75ca6.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libscopeguard-c12be09574878fbf.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libscopeguard-c12be09574878fbf.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libitoa-7c3663b5fe7fa61d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libitoa-7c3663b5fe7fa61d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-derive-0.1.6\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zerofrom_derive","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-derive-0.1.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\zerofrom_derive-de5e88634f1a32b3.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\zerofrom_derive-de5e88634f1a32b3.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\zerofrom_derive-de5e88634f1a32b3.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\zerofrom_derive-de5e88634f1a32b3.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-derive-0.8.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"yoke_derive","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-derive-0.8.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\yoke_derive-3428de91bef6a27b.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\yoke_derive-3428de91bef6a27b.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\yoke_derive-3428de91bef6a27b.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\yoke_derive-3428de91bef6a27b.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","derive","rc","serde_derive","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde-1d4baf12308dbe47.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.8.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.8.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","getrandom","libc","rand_chacha","small_rng","std","std_rng"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand-2b784a4ee5849e9b.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\librand-2b784a4ee5849e9b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-1.0.228\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","derive","rc","serde_derive","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde-18aa1fcbe5b70f67.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libserde-18aa1fcbe5b70f67.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libparking_lot-0b0810dda7292357.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-0.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litemap","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-0.8.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblitemap-03ea5ae0c34ef598.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liblitemap-03ea5ae0c34ef598.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"writeable","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwriteable-8eaa23a8fc72fe33.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwriteable-8eaa23a8fc72fe33.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.50.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.50.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytes","default","fs","full","io-std","io-util","libc","macros","mio","net","parking_lot","process","rt","rt-multi-thread","signal","signal-hook-registry","socket2","sync","test-util","time","tokio-macros","windows-sys"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio-cdcb0da49b865b15.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\percent-encoding-2.3.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"percent_encoding","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\percent-encoding-2.3.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpercent_encoding-7a609891a6b909f6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\subtle-2.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"subtle","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\subtle-2.6.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsubtle-2d97cd8746d75ca6.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","raw_value","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\serde_json-abf804a479e896cf\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\serde_json-abf804a479e896cf\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\itoa-1.0.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libitoa-7c3663b5fe7fa61d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libitoa-7c3663b5fe7fa61d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"writeable","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwriteable-8eaa23a8fc72fe33.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwriteable-8eaa23a8fc72fe33.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-0.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litemap","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-0.8.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblitemap-03ea5ae0c34ef598.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liblitemap-03ea5ae0c34ef598.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\scopeguard-1.2.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libscopeguard-c12be09574878fbf.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libscopeguard-c12be09574878fbf.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.44\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.44\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["attributes","default","log","std","tracing-attributes"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtracing-e7ce9a4ab4666356.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["atomic_usize","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblock_api-f9a8c3851c007193.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liblock_api-f9a8c3851c007193.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typenum","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtypenum-13e2c33599e9c267.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.6.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.6.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand_core-06288a1e4792692b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zmij","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzmij-c70c0b499ff2eb91.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typenum","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typenum-1.19.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtypenum-13e2c33599e9c267.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerofrom","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzerofrom-c62065546cd0bb51.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libzerofrom-c62065546cd0bb51.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerofrom","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerofrom-0.1.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzerofrom-4c9409d97582a14d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.50.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.50.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytes","default","fs","full","io-std","io-util","libc","macros","mio","net","parking_lot","process","rt","rt-multi-thread","signal","signal-hook-registry","socket2","sync","test-util","time","tokio-macros","windows-sys"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio-cdcb0da49b865b15.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","linked_libs":[],"linked_paths":[],"cfgs":["fast_arithmetic=\"64\""],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\serde_json-e3cb22b9d1fc047a\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lock_api-0.4.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["atomic_usize","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblock_api-f9a8c3851c007193.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liblock_api-f9a8c3851c007193.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-sink-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_sink","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-sink-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_sink-5ba79746f4d7cfeb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\generic-array-0.14.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"generic_array","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\generic-array-0.14.7\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libgeneric_array-7746e4139f214114.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot_core-0.9.12\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libparking_lot_core-886424ce29764976.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libparking_lot_core-886424ce29764976.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties_data","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_properties_data-c890edd7c93be33f.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_properties_data-c890edd7c93be33f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer_data","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_normalizer_data-4b81d725c8bbd1f8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_normalizer_data-4b81d725c8bbd1f8.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","raw_value","std","unbounded_depth"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\serde_json-ee274d25546ab47a\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\serde_json-ee274d25546ab47a\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties_data","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_properties_data-c890edd7c93be33f.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_properties_data-c890edd7c93be33f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byteorder-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byteorder","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byteorder-1.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbyteorder-bc3205c56f03d767.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbyteorder-bc3205c56f03d767.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"writeable","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwriteable-36f48f6992b66b63.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","raw_value","std","unbounded_depth"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\serde_json-ee274d25546ab47a\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\serde_json-ee274d25546ab47a\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-0.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litemap","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\litemap-0.8.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblitemap-d32bb148fde5a830.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-1.0.109\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-1.0.109\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","quote"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\syn-f372d0c4d1e7d498\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\syn-f372d0c4d1e7d498\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"writeable","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\writeable-0.6.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwriteable-36f48f6992b66b63.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zmij","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zmij-1.0.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzmij-6e44144048078e1d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libzmij-6e44144048078e1d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#log@0.4.29","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.29\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\log-0.4.29\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblog-4064cf46d3e29ea5.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liblog-4064cf46d3e29ea5.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-0.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"yoke","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-0.8.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","zerofrom"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libyoke-5960e3ed5cdedc17.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libyoke-5960e3ed5cdedc17.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-0.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"yoke","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\yoke-0.8.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","zerofrom"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libyoke-4fe19bb87aba294e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_json","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","raw_value","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_json-47f62ad05e7dd614.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","linked_libs":[],"linked_paths":[],"cfgs":["syn_disable_nightly_tests"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\syn-26a7b2b40b62e5c2\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libparking_lot-595bc88981048327.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libparking_lot-595bc88981048327.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-channel-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_channel","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-channel-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","futures-sink","sink","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_channel-9e6c7c36ae01bf11.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","linked_libs":[],"linked_paths":[],"cfgs":["syn_disable_nightly_tests"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\syn-26a7b2b40b62e5c2\\out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","linked_libs":[],"linked_paths":[],"cfgs":["fast_arithmetic=\"64\""],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\serde_json-32cb60774799ab58\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\parking_lot-0.12.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libparking_lot-595bc88981048327.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libparking_lot-595bc88981048327.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crypto-common-0.1.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crypto_common","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crypto-common-0.1.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["getrandom","rand_core","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrypto_common-d1e5304f10e32652.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-macro-0.3.32\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"futures_macro","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-macro-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\futures_macro-fa65642e3e2dde51.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\futures_macro-fa65642e3e2dde51.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\futures_macro-fa65642e3e2dde51.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\futures_macro-fa65642e3e2dde51.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_task","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_task-54e4c6e17aaa5be6.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.183","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.183\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.183\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\libc-b74b05cf8234ab27\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\libc-b74b05cf8234ab27\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf8_iter-1.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8_iter","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf8_iter-1.0.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libutf8_iter-21bbaa24b305edee.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libutf8_iter-21bbaa24b305edee.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\percent-encoding-2.3.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"percent_encoding","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\percent-encoding-2.3.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpercent_encoding-6a0f3cac05df0305.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libpercent_encoding-6a0f3cac05df0305.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_task","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_task-54e4c6e17aaa5be6.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libslab-40afb97792032206.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-io-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_io","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-io-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_io-569c6dd923c90dc4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libslab-40afb97792032206.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\percent-encoding-2.3.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"percent_encoding","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\percent-encoding-2.3.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpercent_encoding-6a0f3cac05df0305.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libpercent_encoding-6a0f3cac05df0305.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\form_urlencoded-1.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"form_urlencoded","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\form_urlencoded-1.2.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libform_urlencoded-6dd31da5f8bbdb15.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-0.11.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerovec","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-0.11.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","yoke"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzerovec-cb5afaadf699c807.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libzerovec-cb5afaadf699c807.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-0.11.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerovec","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerovec-0.11.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","yoke"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzerovec-f611bed8a0c510bb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerotrie-0.2.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerotrie","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerotrie-0.2.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["yoke","zerofrom"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzerotrie-bd7695fb88d23fa9.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libzerotrie-bd7695fb88d23fa9.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerotrie-0.2.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerotrie","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerotrie-0.2.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["yoke","zerofrom"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzerotrie-b4d407c80c80f1a4.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_json","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","raw_value","std","unbounded_depth"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_json-d8deb0be5ebc62f8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_json-d8deb0be5ebc62f8.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-1.0.109\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\syn-1.0.109\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","quote"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsyn-20572db5a3451155.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsyn-20572db5a3451155.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.183","linked_libs":[],"linked_paths":[],"cfgs":["freebsd12"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\libc-76d440bfb2b20a17\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\form_urlencoded-1.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"form_urlencoded","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\form_urlencoded-1.2.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libform_urlencoded-4bca1fa669ee7bb8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libform_urlencoded-4bca1fa669ee7bb8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_json","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_json-1.0.149\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","raw_value","std","unbounded_depth"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_json-d8deb0be5ebc62f8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_json-d8deb0be5ebc62f8.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-util-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_util","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-util-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","async-await","async-await-macro","channel","futures-channel","futures-io","futures-macro","futures-sink","io","memchr","sink","slab","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_util-9810da2e8d7c17bb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\form_urlencoded-1.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"form_urlencoded","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\form_urlencoded-1.2.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libform_urlencoded-4bca1fa669ee7bb8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libform_urlencoded-4bca1fa669ee7bb8.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.183","linked_libs":[],"linked_paths":[],"cfgs":["freebsd12"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\libc-76d440bfb2b20a17\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer_data","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer_data-2.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_normalizer_data-4eeb9ea125b6d4bb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties_data","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties_data-2.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_properties_data-545490d9700a6d61.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytes-1.11.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytes","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bytes-1.11.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbytes-73c903222caad142.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbytes-73c903222caad142.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.4.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.4.2\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libgetrandom-4d985aed286acac6.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libgetrandom-4d985aed286acac6.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http@1.4.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-1.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-1.4.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhttp-30f6587e9251a429.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-beaa947221958ecb.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-beaa947221958ecb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.4\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.4\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\getrandom-b1849ce219f50d7b\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\getrandom-b1849ce219f50d7b\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\equivalent-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"equivalent","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\equivalent-1.0.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libequivalent-7dd4e691ab3179e6.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libequivalent-7dd4e691ab3179e6.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinystr-0.8.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinystr","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinystr-0.8.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtinystr-f3f8991d8c863749.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtinystr-f3f8991d8c863749.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\potential_utf-0.1.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"potential_utf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\potential_utf-0.1.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpotential_utf-c4534e162ef6a716.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libpotential_utf-c4534e162ef6a716.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinystr-0.8.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinystr","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinystr-0.8.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtinystr-cc220c1f1d9ac4cf.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\potential_utf-0.1.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"potential_utf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\potential_utf-0.1.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpotential_utf-8059931c249caf5b.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-beaa947221958ecb.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-beaa947221958ecb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\equivalent-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"equivalent","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\equivalent-1.0.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libequivalent-7dd4e691ab3179e6.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libequivalent-7dd4e691ab3179e6.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\getrandom-20b8fa8559b0154e\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libthiserror-d6fca69794b67b6e.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libthiserror-d6fca69794b67b6e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-traits-0.2.19\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-traits-0.2.19\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["i128","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\num-traits-b33ba7facb346379\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\num-traits-b33ba7facb346379\\build_script_build.pdb"],"executable":null,"fresh":true} @@ -166,22 +166,22 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-2.13.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"indexmap","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-2.13.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libindexmap-f5532a84b15092e9.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libindexmap-f5532a84b15092e9.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","linked_libs":[],"linked_paths":[],"cfgs":["has_total_cmp"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\num-traits-b5ebfe9618ab2a86\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\generic-array-0.14.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"generic_array","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\generic-array-0.14.7\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libgeneric_array-5e6faae52e20f394.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libgeneric_array-5e6faae52e20f394.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.102","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\anyhow-ff7d2e6a15a69f2e\\out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","linked_libs":[],"linked_paths":[],"cfgs":["folded_multiply"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\ahash-98bf40876c50dd15\\out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.102","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\anyhow-ff7d2e6a15a69f2e\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.22.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"uuid","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.22.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","rng","serde","sha1","std","v4","v5"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libuuid-c5efee1ef0ea396d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@2.11.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-2.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-2.11.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["serde","serde_core"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbitflags-f66f4a40e098ccb7.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\subtle-2.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"subtle","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\subtle-2.6.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsubtle-fcde06295716dc74.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsubtle-fcde06295716dc74.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\digest-0.10.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"digest","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\digest-0.10.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","block-buffer","core-api","default","mac","std","subtle"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdigest-ec3723bb07501b1c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.48.5\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.48.5\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-f0fcf1c5694cd464\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-f0fcf1c5694cd464\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\crossbeam-utils-c3bf4311ccab4b5b\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\crossbeam-utils-c3bf4311ccab4b5b\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.2.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.2.17\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcpufeatures-e17531c39eceb0d8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\crossbeam-utils-c3bf4311ccab4b5b\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\crossbeam-utils-c3bf4311ccab4b5b\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.48.5\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.48.5\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-f0fcf1c5694cd464\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-f0fcf1c5694cd464\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_provider","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["baked"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_provider-22507d25805f343a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_provider-22507d25805f343a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_provider","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_provider-2.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["baked"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_provider-490883674567f439.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-traits-0.2.19\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_traits","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-traits-0.2.19\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["i128","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnum_traits-249b801f938b64db.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\block-buffer-0.10.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block_buffer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\block-buffer-0.10.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libblock_buffer-3e4d5ed17a08b747.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libblock_buffer-3e4d5ed17a08b747.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crypto-common-0.1.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crypto_common","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crypto-common-0.1.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrypto_common-bb887537227bb88d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcrypto_common-bb887537227bb88d.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\crossbeam-utils-ac7789a279f6cd76\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\block-buffer-0.10.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block_buffer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\block-buffer-0.10.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libblock_buffer-3e4d5ed17a08b747.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libblock_buffer-3e4d5ed17a08b747.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5","linked_libs":[],"linked_paths":["native=C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.48.5\\lib"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-a5db599b4cef12d4\\out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\crossbeam-utils-ac7789a279f6cd76\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-1.0.69\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libthiserror-c611a9792a19f287.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\once_cell-1.21.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"once_cell","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\once_cell-1.21.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","race","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libonce_cell-fd55d22732208bc8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libonce_cell-fd55d22732208bc8.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vcpkg-0.2.15\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"vcpkg","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vcpkg-0.2.15\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libvcpkg-c78c6010059a977b.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libvcpkg-c78c6010059a977b.rmeta"],"executable":null,"fresh":true} @@ -189,16 +189,16 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-core-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_core-2461fe7071cff216.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_core-2461fe7071cff216.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-body-1.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http_body","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-body-1.0.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhttp_body-050e0735e9155daf.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.47","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.47\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerocopy","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zerocopy-0.8.47\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzerocopy-850cea7551b9b54b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byteorder-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byteorder","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byteorder-1.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbyteorder-4ee58ac63abd2ff9.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\paste-1.0.15\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\paste-1.0.15\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\paste-2e9018f20b34b5ee\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\paste-2e9018f20b34b5ee\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.2.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.2.17\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcpufeatures-82d036f4eb718261.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcpufeatures-82d036f4eb718261.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties-2.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties-2.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_properties-d82639bf89d3f598.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_properties-d82639bf89d3f598.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_normalizer-c145d636544cc85a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_normalizer-c145d636544cc85a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_normalizer-02b1232a2e1473c0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties-2.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_properties-2.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_properties-4ca24f59aa4a16f9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\icu_normalizer-2.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libicu_normalizer-02b1232a2e1473c0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\digest-0.10.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"digest","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\digest-0.10.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","block-buffer","core-api","default","mac","std","subtle"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdigest-c74ca95da9fa7575.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdigest-c74ca95da9fa7575.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_utils","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrossbeam_utils-8b9e001a42276d7a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-lite-0.2.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_project_lite","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-lite-0.2.17\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpin_project_lite-4abfcf01ecc7125f.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libpin_project_lite-4abfcf01ecc7125f.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byteorder-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byteorder","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\byteorder-1.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbyteorder-4ee58ac63abd2ff9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.2.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cpufeatures-0.2.17\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcpufeatures-82d036f4eb718261.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcpufeatures-82d036f4eb718261.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-service-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_service","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-service-0.3.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtower_service-621ee16da2f32728.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\paste-f68e7235a28593f8\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.3.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libgetrandom-7b5389115036a22f.rmeta"],"executable":null,"fresh":true} @@ -210,137 +210,137 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna_adapter-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna_adapter","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna_adapter-1.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libidna_adapter-8bfc44579dc6c5ed.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libidna_adapter-8bfc44579dc6c5ed.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna_adapter-1.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna_adapter","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna_adapter-1.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libidna_adapter-2a8961e3a3dc14c6.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha2-0.10.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha2-0.10.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsha2-7b6b7f8ae2425f32.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsha2-7b6b7f8ae2425f32.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1","linked_libs":[],"linked_paths":[],"cfgs":["httparse_simd_neon_intrinsics","httparse_simd"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\httparse-7202345f727684a0\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\paste-1.0.15\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"paste","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\paste-1.0.15\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\paste-62461bab86b99aa9.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\paste-62461bab86b99aa9.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\paste-62461bab86b99aa9.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\paste-62461bab86b99aa9.pdb"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1","linked_libs":[],"linked_paths":[],"cfgs":["httparse_simd_neon_intrinsics","httparse_simd"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\httparse-7202345f727684a0\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-a810bcad5b441f5a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.22.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.22.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbase64-3a49147d849773fa.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\crossbeam-utils-3ce9954fa01125cf\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\crossbeam-utils-3ce9954fa01125cf\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.16.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-a810bcad5b441f5a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\equivalent-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"equivalent","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\equivalent-1.0.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libequivalent-e113575d355eefe7.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","linked_libs":[],"linked_paths":[],"cfgs":["has_total_cmp"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\num-traits-55b63f532a4ec5df\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ahash","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","getrandom","runtime-rng","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libahash-780ba3c60130e52e.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libahash-780ba3c60130e52e.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","linked_libs":[],"linked_paths":[],"cfgs":["has_total_cmp"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\num-traits-55b63f532a4ec5df\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#chrono@0.4.44","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\chrono-0.4.44\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"chrono","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\chrono-0.4.44\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","clock","default","iana-time-zone","js-sys","now","oldtime","serde","std","wasm-bindgen","wasmbind","winapi","windows-link"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libchrono-4c53ac0e8b30f7db.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mio-1.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mio","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mio-1.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["net","os-ext","os-poll"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmio-55ffa2ab0951b0de.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libmio-55ffa2ab0951b0de.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\socket2-0.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"socket2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\socket2-0.6.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["all"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsocket2-79c2a8179ccbeb4c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsocket2-79c2a8179ccbeb4c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ring-0.17.14\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ring-0.17.14\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","dev_urandom_fallback","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\ring-034e21efd5a1c90a\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\ring-034e21efd5a1c90a\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_task","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_task-4387072233c2a84a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_task-4387072233c2a84a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mio@1.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mio-1.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mio","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mio-1.1.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["net","os-ext","os-poll"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmio-55ffa2ab0951b0de.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libmio-55ffa2ab0951b0de.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httpdate-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"httpdate","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httpdate-1.0.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhttpdate-cd76abbf64c31bdf.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna-1.1.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","compiled_data","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libidna-6f8824775951d60f.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libidna-6f8824775951d60f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\idna-1.1.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","compiled_data","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libidna-65aed86524fdbcd1.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@2.13.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-2.13.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"indexmap","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-2.13.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libindexmap-132c00e4ad411ea7.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\crossbeam-utils-5f4784aeb1422676\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httparse-1.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"httparse","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httparse-1.10.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhttparse-353e32245d75214c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#httpdate@1.0.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httpdate-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"httpdate","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\httpdate-1.0.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhttpdate-cd76abbf64c31bdf.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libslab-3db3855b191467ea.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libslab-3db3855b191467ea.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\crossbeam-utils-5f4784aeb1422676\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\try-lock-0.2.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"try_lock","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\try-lock-0.2.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtry_lock-656131bcec94598b.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-io-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_io","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-io-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_io-9eb4880a6e68fd23.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_io-9eb4880a6e68fd23.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zeroize-1.8.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zeroize","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zeroize-1.8.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzeroize-54daabafd6b605e0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_task","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-task-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_task-4387072233c2a84a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_task-4387072233c2a84a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\slab-0.4.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libslab-3db3855b191467ea.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libslab-3db3855b191467ea.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\minimal-lexical-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"minimal_lexical","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\minimal-lexical-0.2.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libminimal_lexical-d09e18b32cecaf87.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libminimal_lexical-d09e18b32cecaf87.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-io-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_io","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-io-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_io-9eb4880a6e68fd23.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_io-9eb4880a6e68fd23.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\allocator-api2-0.2.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"allocator_api2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\allocator-api2-0.2.21\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liballocator_api2-852dffaba079e65d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liballocator_api2-852dffaba079e65d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.50.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.50.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytes","default","fs","io-util","libc","mio","net","rt","socket2","sync","time","windows-sys"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio-2e32bf64af4e93e3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio-2e32bf64af4e93e3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-traits-0.2.19\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_traits","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-traits-0.2.19\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnum_traits-29f58a8d611a4908.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libnum_traits-29f58a8d611a4908.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14","linked_libs":["static=ring_core_0_17_14_","static=ring_core_0_17_14__test"],"linked_paths":["native=G:\\ZClaw_openfang\\target\\debug\\build\\ring-98d8c3f27159519f\\out"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\ring-98d8c3f27159519f\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio@1.50.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.50.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-1.50.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytes","default","fs","io-util","libc","mio","net","rt","socket2","sync","time","windows-sys"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio-2e32bf64af4e93e3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio-2e32bf64af4e93e3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ahash@0.8.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ahash","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ahash-0.8.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","getrandom","runtime-rng","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libahash-aba56694af270b15.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#url@2.5.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"url","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.8\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liburl-f6ea4980e7289dc7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liburl-f6ea4980e7289dc7.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#url@2.5.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"url","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\url-2.5.8\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liburl-1c560b5d3004c915.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-util-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_util","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-util-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","futures-io","futures-sink","io","memchr","sink","slab","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_util-89dd8f2f03098ff9.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_util-89dd8f2f03098ff9.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.14.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.14.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ahash","allocator-api2","default","inline-more"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-5cdd0b9976a3762b.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-5cdd0b9976a3762b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#want@0.3.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\want-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"want","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\want-0.3.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwant-f48e15a7b88fe210.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_utils","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrossbeam_utils-22114b5850f509d7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcrossbeam_utils-22114b5850f509d7.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom-7.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nom","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom-7.1.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnom-00432591819eba03.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libnom-00432591819eba03.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.14.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.14.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ahash","allocator-api2","default","inline-more"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-5cdd0b9976a3762b.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-5cdd0b9976a3762b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_utils","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-utils-0.8.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrossbeam_utils-22114b5850f509d7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcrossbeam_utils-22114b5850f509d7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-util-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_util","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-util-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","futures-io","futures-sink","io","memchr","sink","slab","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_util-89dd8f2f03098ff9.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_util-89dd8f2f03098ff9.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-core-0.1.36\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-core-0.1.36\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["once_cell","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtracing_core-262352343a6b3be5.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtracing_core-262352343a6b3be5.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.48.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_x86_64_msvc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.48.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_x86_64_msvc-2630b7c0ee808db7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_x86_64_msvc-2630b7c0ee808db7.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-trait-0.1.89\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"async_trait","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-trait-0.1.89\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\async_trait-549e0e4b73a6ad13.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\async_trait-549e0e4b73a6ad13.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\async_trait-549e0e4b73a6ad13.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\async_trait-549e0e4b73a6ad13.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec_macros-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec_macros-0.1.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtinyvec_macros-785012fbf7617b4f.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtinyvec_macros-785012fbf7617b4f.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc-catalog@2.4.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-catalog-2.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc_catalog","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-catalog-2.4.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc_catalog-72d298712472abd8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc_catalog-72d298712472abd8.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-layer-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_layer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-layer-0.3.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtower_layer-4736266191c68a93.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\allocator-api2-0.2.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"allocator_api2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\allocator-api2-0.2.21\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liballocator_api2-4595206d1c10a8a2.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atomic-waker-1.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atomic_waker","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atomic-waker-1.1.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libatomic_waker-37dc9b4ba20b5be1.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-utils-0.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_utils","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-utils-0.1.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpin_utils-0a29d453a1ef8632.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atomic-waker-1.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atomic_waker","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atomic-waker-1.1.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libatomic_waker-37dc9b4ba20b5be1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-layer-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_layer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-layer-0.3.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtower_layer-4736266191c68a93.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode_categories@0.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode_categories-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_categories","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode_categories-0.1.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_categories-b0b965a9e2d04d51.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_categories-b0b965a9e2d04d51.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.44\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.44\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["attributes","default","log","std","tracing-attributes"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtracing-6f92c71d33c8e0d4.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtracing-6f92c71d33c8e0d4.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.11.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","tinyvec_macros"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtinyvec-e2c41b3b69a81b15.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtinyvec-e2c41b3b69a81b15.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.14.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.14.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ahash","allocator-api2","default","inline-more","raw"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-3327132af416ad65.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-1.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-1.8.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","default","http1","server"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhyper-9c8f1e8f7bdc8603.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc@3.4.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-3.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-3.4.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc-263c0345de1fff78.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc-263c0345de1fff78.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc-catalog@2.4.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-catalog-2.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc_catalog","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-catalog-2.4.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc_catalog-72d298712472abd8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc_catalog-72d298712472abd8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#allocator-api2@0.2.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\allocator-api2-0.2.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"allocator_api2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\allocator-api2-0.2.21\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liballocator_api2-4595206d1c10a8a2.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.48.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_targets","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.48.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_targets-465b8d3ccb4c1c95.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_targets-465b8d3ccb4c1c95.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashlink@0.8.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashlink-0.8.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashlink","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashlink-0.8.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashlink-375c1295a1bb1977.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhashlink-375c1295a1bb1977.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.44\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-0.1.44\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["attributes","default","log","std","tracing-attributes"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtracing-6f92c71d33c8e0d4.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtracing-6f92c71d33c8e0d4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-1.8.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-1.8.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","default","http1","server"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhyper-9c8f1e8f7bdc8603.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.11.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","tinyvec_macros"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtinyvec-e2c41b3b69a81b15.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtinyvec-e2c41b3b69a81b15.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-queue-0.3.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_queue","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-queue-0.3.12\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrossbeam_queue-8fa119faee59ace0.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcrossbeam_queue-8fa119faee59ace0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashlink@0.8.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashlink-0.8.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashlink","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashlink-0.8.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashlink-375c1295a1bb1977.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhashlink-375c1295a1bb1977.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlformat@0.2.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlformat-0.2.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlformat","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlformat-0.2.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlformat-b75b2a3ebf683112.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlformat-b75b2a3ebf683112.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc@3.4.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-3.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-3.4.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc-263c0345de1fff78.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc-263c0345de1fff78.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atoi@2.0.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atoi-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atoi","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atoi-2.0.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libatoi-6af08a736023bb57.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libatoi-6af08a736023bb57.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-stream-0.1.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_stream","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-stream-0.1.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","fs","time"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio_stream-ff8918ee5bc80161.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio_stream-ff8918ee5bc80161.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-types#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-types\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_types","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-types\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_types-a8850d94d3c733c3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-channel-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_channel","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-channel-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","futures-sink","sink","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_channel-f6cf9019a29fba32.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_channel-f6cf9019a29fba32.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libsqlite3-sys@0.27.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bundled","bundled_bindings","cc","pkg-config","unlock_notify","vcpkg"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-155589c2b6ec1356\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-155589c2b6ec1356\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-intrusive@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-intrusive-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_intrusive","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-intrusive-0.5.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","parking_lot","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_intrusive-a76184ef02401692.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_intrusive-a76184ef02401692.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-body-util-0.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http_body_util","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-body-util-0.1.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhttp_body_util-5aa8bb98e195cbde.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlformat@0.2.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlformat-0.2.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlformat","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlformat-0.2.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlformat-b75b2a3ebf683112.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlformat-b75b2a3ebf683112.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-intrusive@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-intrusive-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_intrusive","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-intrusive-0.5.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","parking_lot","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_intrusive-a76184ef02401692.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_intrusive-a76184ef02401692.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libsqlite3-sys@0.27.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bundled","bundled_bindings","cc","pkg-config","unlock_notify","vcpkg"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-155589c2b6ec1356\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-155589c2b6ec1356\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.14.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.14.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.14.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ahash","allocator-api2","default","inline-more","raw"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-3327132af416ad65.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#either@1.15.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\either-1.15.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"either","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\either-1.15.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libeither-14f3258f1a8bdd44.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libeither-14f3258f1a8bdd44.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hex-0.4.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hex","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hex-0.4.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhex-5b0a237d189c155a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhex-5b0a237d189c155a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#event-listener@2.5.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\event-listener-2.5.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"event_listener","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\event-listener-2.5.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libevent_listener-35e52d10e5e16c13.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libevent_listener-35e52d10e5e16c13.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\untrusted-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"untrusted","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\untrusted-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libuntrusted-1e19c89c8f6ec185.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ipnet@2.12.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ipnet-2.12.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ipnet","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ipnet-2.12.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libipnet-f17909821836d355.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\minimal-lexical-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"minimal_lexical","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\minimal-lexical-0.2.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libminimal_lexical-5f0d52d1ae40f2c1.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libsqlite3-sys@0.27.0","linked_libs":["static=sqlite3"],"linked_paths":["native=G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-abd62adcb6ab84a9\\out"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-abd62adcb6ab84a9\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.48.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.48.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Foundation","Win32_UI","Win32_UI_Shell","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_sys-73d5e911e5ea24ed.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_sys-73d5e911e5ea24ed.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.25","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-normalization-0.1.25\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_normalization","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-normalization-0.1.25\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_normalization-26a6daa85490e108.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_normalization-26a6daa85490e108.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libsqlite3-sys@0.27.0","linked_libs":["static=sqlite3"],"linked_paths":["native=G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-abd62adcb6ab84a9\\out"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-abd62adcb6ab84a9\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-pki-types-1.14.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls_pki_types","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-pki-types-1.14.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librustls_pki_types-00338b43e9b2bd3b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hmac-0.12.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hmac","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hmac-0.12.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["reset"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhmac-3f4dd428d05c5ee3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhmac-3f4dd428d05c5ee3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.48.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.48.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_x86_64_msvc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.48.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_x86_64_msvc-873f80146b073c71.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libsqlite3-sys@0.27.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bundled","bundled_bindings","cc","default","min_sqlite_version_3_14_0","pkg-config","unlock_notify","vcpkg"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-dda1f8548954d119\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-dda1f8548954d119\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha2-0.10.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha2-0.10.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsha2-535f5a2f6324b852.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-stream-0.1.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_stream","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-stream-0.1.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","fs","time"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio_stream-820b6a1a786c372a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ring-0.17.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ring","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ring-0.17.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","dev_urandom_fallback","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libring-95137960b46a5609.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx-core@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-core-0.7.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlx_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-core-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_rt-tokio","any","crc","default","json","migrate","offline","serde","serde_json","sha2","tokio","tokio-stream"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_core-2abfd91a4d766bf7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_core-2abfd91a4d766bf7.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom-7.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nom","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom-7.1.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnom-44d4f1b6b6ae5644.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.20","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-util-0.1.20\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_util","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-util-0.1.20\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","client-legacy","client-proxy","default","http1","server","service","tokio"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhyper_util-7e72519db8da3d8d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\spin-0.9.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"spin","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\spin-0.9.8\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["barrier","default","lazy","lock_api","lock_api_crate","mutex","once","rwlock","spin_mutex"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libspin-9d3ef05e95b45514.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libspin-9d3ef05e95b45514.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx-core@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-core-0.7.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlx_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-core-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_rt-tokio","any","crc","default","json","migrate","offline","serde","serde_json","sha2","tokio","tokio-stream"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_core-2abfd91a4d766bf7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_core-2abfd91a4d766bf7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.20","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-util-0.1.20\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_util","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-util-0.1.20\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","client-legacy","client-proxy","default","http1","server","service","tokio"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhyper_util-7e72519db8da3d8d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom-7.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nom","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nom-7.1.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnom-44d4f1b6b6ae5644.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ring-0.17.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ring","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ring-0.17.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","dev_urandom_fallback","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libring-95137960b46a5609.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-stream-0.1.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_stream","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-stream-0.1.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","fs","time"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio_stream-820b6a1a786c372a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\spin-0.9.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"spin","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\spin-0.9.8\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["barrier","default","lazy","lock_api","lock_api_crate","mutex","once","rwlock","spin_mutex"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libspin-aa2e7615df01419b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sync_wrapper-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sync_wrapper","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sync_wrapper-1.0.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["futures","futures-core"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsync_wrapper-883cbc50b8c77ef5.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#home@0.5.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\home-0.5.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"home","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\home-0.5.12\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhome-c7ff8c1b81363983.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhome-c7ff8c1b81363983.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec_macros-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec_macros-0.1.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtinyvec_macros-720664ddcc02125c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode_categories@0.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode_categories-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_categories","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode_categories-0.1.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_categories-281ae1f779c975c3.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-bidi@0.3.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","hardcoded-data","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_bidi-8e3bec474c7dbac1.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_bidi-8e3bec474c7dbac1.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc-catalog@2.4.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-catalog-2.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc_catalog","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-catalog-2.4.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc_catalog-54f1ddbef010114c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec_macros-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec_macros-0.1.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtinyvec_macros-720664ddcc02125c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-bidi@0.3.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","hardcoded-data","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_bidi-8e3bec474c7dbac1.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_bidi-8e3bec474c7dbac1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode_categories@0.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode_categories-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_categories","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode_categories-0.1.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_categories-281ae1f779c975c3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-properties@0.1.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-properties-0.1.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_properties","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-properties-0.1.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","emoji","general-category"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_properties-e7d3b8e492af7fab.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_properties-e7d3b8e492af7fab.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libsqlite3-sys@0.27.0","linked_libs":["static=sqlite3"],"linked_paths":["native=G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-58315387d44aea38\\out"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-58315387d44aea38\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hkdf@0.12.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hkdf-0.12.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hkdf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hkdf-0.12.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhkdf-aadd6e1ea4de7895.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhkdf-aadd6e1ea4de7895.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libsqlite3-sys@0.27.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libsqlite3_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bundled","bundled_bindings","cc","pkg-config","unlock_notify","vcpkg"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblibsqlite3_sys-f50ef60935b93831.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liblibsqlite3_sys-f50ef60935b93831.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashlink@0.8.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashlink-0.8.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashlink","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashlink-0.8.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashlink-cd357469d12f6537.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flume@0.11.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flume-0.11.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flume","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flume-0.11.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async","futures-core","futures-sink"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libflume-d9af8eadaa7cee02.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libflume-d9af8eadaa7cee02.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#etcetera@0.8.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\etcetera-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"etcetera","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\etcetera-0.8.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libetcetera-7a7d2b1244c52f65.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libetcetera-7a7d2b1244c52f65.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlformat@0.2.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlformat-0.2.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlformat","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlformat-0.2.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlformat-b69bb0b86b3c9bd4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.11.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","tinyvec_macros"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtinyvec-6bf4e6200ff413de.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc@3.4.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-3.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc-3.4.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc-3d56cc00898e447f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stringprep@0.1.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stringprep-0.1.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stringprep","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stringprep-0.1.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libstringprep-53dbf1f8b4bdeb56.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libstringprep-53dbf1f8b4bdeb56.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#etcetera@0.8.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\etcetera-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"etcetera","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\etcetera-0.8.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libetcetera-7a7d2b1244c52f65.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libetcetera-7a7d2b1244c52f65.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.11.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tinyvec-1.11.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","tinyvec_macros"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtinyvec-6bf4e6200ff413de.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlformat@0.2.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlformat-0.2.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlformat","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlformat-0.2.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlformat-b69bb0b86b3c9bd4.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flume@0.11.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flume-0.11.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flume","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flume-0.11.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async","futures-core","futures-sink"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libflume-d9af8eadaa7cee02.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libflume-d9af8eadaa7cee02.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hkdf@0.12.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hkdf-0.12.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hkdf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hkdf-0.12.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhkdf-aadd6e1ea4de7895.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhkdf-aadd6e1ea4de7895.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.48.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.48.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_targets","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.48.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_targets-eec900a9dbf5e759.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashlink@0.8.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashlink-0.8.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashlink","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashlink-0.8.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashlink-cd357469d12f6537.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libsqlite3-sys@0.27.0","linked_libs":["static=sqlite3"],"linked_paths":["native=G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-58315387d44aea38\\out"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\libsqlite3-sys-58315387d44aea38\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-executor-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_executor","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-executor-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_executor-47fdef561b108ad6.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_executor-47fdef561b108ad6.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#md-5@0.10.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\md-5-0.10.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"md5","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\md-5-0.10.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmd5-d8bba2eb07405fe8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libmd5-d8bba2eb07405fe8.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-queue-0.3.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_queue","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-queue-0.3.12\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrossbeam_queue-b03aabc95302b55c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ppv-lite86-0.2.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ppv_lite86","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ppv-lite86-0.2.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libppv_lite86-b04bcc498f067edd.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atoi@2.0.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atoi-2.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atoi","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\atoi-2.0.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libatoi-a3c59e5648eaa56f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ppv-lite86-0.2.21\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ppv_lite86","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ppv-lite86-0.2.21\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libppv_lite86-b04bcc498f067edd.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hmac-0.12.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hmac","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hmac-0.12.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["reset"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhmac-4a45bb740f92ea01.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-intrusive@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-intrusive-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_intrusive","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-intrusive-0.5.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","parking_lot","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_intrusive-0aaac8264eea4e2b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#either@1.15.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\either-1.15.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"either","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\either-1.15.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libeither-543bdfc8680a19ec.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.3.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfastrand-902a4bf06466413a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfastrand-902a4bf06466413a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.23","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-1.0.23\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ryu","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-1.0.23\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libryu-e3e01b2a58d0ed8c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"urlencoding","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liburlencoding-16a1903d8cdf917c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liburlencoding-16a1903d8cdf917c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#base64@0.21.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.21.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.21.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbase64-9cb6f644c2414bf7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbase64-9cb6f644c2414bf7.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#whoami@1.6.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\whoami-1.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"whoami","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\whoami-1.6.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwhoami-1b5100f38322358c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwhoami-1b5100f38322358c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#base64@0.21.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.21.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.21.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbase64-f02bcad3099b98e1.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.37","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ring","std","tls12"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\rustls-78e7e6bd5a30d7c7\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\rustls-78e7e6bd5a30d7c7\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@2.11.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-2.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-2.11.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbitflags-493492ac360479b3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbitflags-493492ac360479b3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-intrusive@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-intrusive-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_intrusive","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-intrusive-0.5.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","parking_lot","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_intrusive-0aaac8264eea4e2b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#event-listener@2.5.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\event-listener-2.5.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"event_listener","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\event-listener-2.5.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libevent_listener-7ec13a834f2277de.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dotenvy@0.15.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dotenvy-0.15.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dotenvy","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dotenvy-0.15.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdotenvy-d34f0284ce49792f.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdotenvy-d34f0284ce49792f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#whoami@1.6.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\whoami-1.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"whoami","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\whoami-1.6.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwhoami-1b5100f38322358c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwhoami-1b5100f38322358c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hex-0.4.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hex","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hex-0.4.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhex-b8a4ee048476e066.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.3.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfastrand-902a4bf06466413a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfastrand-902a4bf06466413a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dotenvy@0.15.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dotenvy-0.15.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dotenvy","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dotenvy-0.15.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdotenvy-d34f0284ce49792f.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdotenvy-d34f0284ce49792f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.13.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_segmentation","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.13.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_segmentation-ebb62883ddbd5de2.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_segmentation-ebb62883ddbd5de2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.37","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ring","std","tls12"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\rustls-78e7e6bd5a30d7c7\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\rustls-78e7e6bd5a30d7c7\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.23","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-1.0.23\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ryu","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ryu-1.0.23\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libryu-e3e01b2a58d0ed8c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#base64@0.21.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.21.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.21.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbase64-9cb6f644c2414bf7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbase64-9cb6f644c2414bf7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#base64@0.21.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.21.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.21.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbase64-f02bcad3099b98e1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@2.11.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-2.11.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-2.11.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbitflags-493492ac360479b3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbitflags-493492ac360479b3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"urlencoding","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liburlencoding-16a1903d8cdf917c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liburlencoding-16a1903d8cdf917c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.48.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.48.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.48.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Foundation","Win32_UI","Win32_UI_Shell","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_sys-6bc4b2572595de61.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.3.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand_chacha-f0f445ca29fa7c9e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-normalization@0.1.25","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-normalization-0.1.25\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_normalization","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-normalization-0.1.25\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_normalization-1a8c645acd1a4902.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.3.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand_chacha-f0f445ca29fa7c9e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.10","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-webpki-0.103.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webpki","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-webpki-0.103.10\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","ring","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwebpki-ce82cc367daa9b14.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tempfile@3.27.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tempfile-3.27.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tempfile","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tempfile-3.27.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","getrandom"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtempfile-965abde9f750d800.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtempfile-965abde9f750d800.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx-postgres@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-postgres-0.7.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlx_postgres","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-postgres-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["migrate","offline"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_postgres-08d543d285386864.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_postgres-08d543d285386864.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx-core@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-core-0.7.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlx_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-core-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_rt-tokio","any","crc","default","json","migrate","offline","serde","serde_json","sha2","tokio","tokio-stream"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_core-24a7eed0b3148b2d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#heck@0.4.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-0.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"heck","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-0.4.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","unicode","unicode-segmentation"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libheck-0186445b366886e2.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libheck-0186445b366886e2.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx-sqlite@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-sqlite-0.7.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlx_sqlite","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-sqlite-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["json","migrate","offline","serde"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_sqlite-c22845f5e42e838c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_sqlite-c22845f5e42e838c.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.37","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\rustls-c15c18b7c8cd9e1c\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx-postgres@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-postgres-0.7.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlx_postgres","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-postgres-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["migrate","offline"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_postgres-08d543d285386864.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_postgres-08d543d285386864.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#heck@0.4.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-0.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"heck","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-0.4.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","unicode","unicode-segmentation"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libheck-0186445b366886e2.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libheck-0186445b366886e2.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-0.5.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-0.5.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["futures-core","futures-util","log","make","pin-project-lite","retry","sync_wrapper","timeout","tokio","tracing","util"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtower-7e33b711007b8259.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.102","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.102\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anyhow","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.102\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libanyhow-9c2b1ae3be6b3969.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-executor-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_executor","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-executor-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures_executor-4a901101061d3b1a.rmeta"],"executable":null,"fresh":true} @@ -348,43 +348,43 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aho-corasick-1.1.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aho-corasick-1.1.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["perf-literal","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaho_corasick-33010bb26b753d34.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#siphasher@1.0.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsiphasher-ba5c0ed2871aa393.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsiphasher-ba5c0ed2871aa393.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.10","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-syntax-0.8.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-syntax-0.8.10\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libregex_syntax-f8e8c0494cc57f6f.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-bidi@0.3.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","hardcoded-data","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_bidi-6a6af6ae6a25d57d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-properties@0.1.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-properties-0.1.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_properties","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-properties-0.1.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","emoji","general-category"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_properties-fd77251b484d3926.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-bidi@0.3.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-bidi-0.3.18\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","hardcoded-data","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_bidi-6a6af6ae6a25d57d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_urlencoded-0.7.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_urlencoded","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_urlencoded-0.7.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_urlencoded-d7b811c26af4b6dd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_shared-223a338ccb5a4d0f.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_shared-223a338ccb5a4d0f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx-macros-core@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-macros-core-0.7.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlx_macros_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-macros-core-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_rt-tokio","default","json","migrate","postgres","sqlite","sqlx-postgres","sqlx-sqlite","tokio"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_macros_core-3aab4ffe2680e41d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_macros_core-3aab4ffe2680e41d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.37","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ring","std","tls12"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librustls-9b6379d0328067e7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","dfa-build","dfa-onepass","dfa-search","hybrid","meta","nfa-backtrack","nfa-pikevm","nfa-thompson","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libregex_automata-7ad2d595207571b4.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stringprep@0.1.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stringprep-0.1.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stringprep","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\stringprep-0.1.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libstringprep-5f5d4df321b03899.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#etcetera@0.8.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\etcetera-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"etcetera","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\etcetera-0.8.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libetcetera-25e8a988dc70df60.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","dfa-build","dfa-onepass","dfa-search","hybrid","meta","nfa-backtrack","nfa-pikevm","nfa-thompson","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libregex_automata-7ad2d595207571b4.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_shared-223a338ccb5a4d0f.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_shared-223a338ccb5a4d0f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.37","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustls-0.23.37\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ring","std","tls12"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librustls-9b6379d0328067e7.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.8.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.8.5\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","getrandom","libc","rand_chacha","std","std_rng"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand-7889e9944ea0e100.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libsqlite3-sys@0.27.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libsqlite3_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bundled","bundled_bindings","cc","default","min_sqlite_version_3_14_0","pkg-config","unlock_notify","vcpkg"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblibsqlite3_sys-de62911175108a1c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hkdf@0.12.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hkdf-0.12.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hkdf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hkdf-0.12.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhkdf-74515631acb54889.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flume@0.11.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flume-0.11.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flume","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flume-0.11.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async","futures-core","futures-sink"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libflume-35a8dbc90e27fbe2.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libsqlite3-sys@0.27.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libsqlite3_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libsqlite3-sys-0.27.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bundled","bundled_bindings","cc","default","min_sqlite_version_3_14_0","pkg-config","unlock_notify","vcpkg"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblibsqlite3_sys-de62911175108a1c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#md-5@0.10.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\md-5-0.10.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"md5","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\md-5-0.10.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmd5-c6de97c2f28ee7ab.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"urlencoding","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liburlencoding-3425fe315c416404.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#whoami@1.6.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\whoami-1.6.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"whoami","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\whoami-1.6.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwhoami-d9505fd6c5ac06c5.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dotenvy@0.15.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dotenvy-0.15.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dotenvy","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dotenvy-0.15.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdotenvy-e6530c6ae09d3acc.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#urlencoding@2.1.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"urlencoding","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlencoding-2.1.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liburlencoding-3425fe315c416404.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webpki-roots@1.0.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webpki-roots-1.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webpki_roots","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webpki-roots-1.0.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwebpki_roots-ba253a89b5660be2.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.11","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\iri-string-0.7.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"iri_string","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\iri-string-0.7.11\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libiri_string-11ba1e8bbc8d3751.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-rustls-0.26.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_rustls","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-rustls-0.26.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ring","tls12"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio_rustls-4305d8143c5849a3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx-macros@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-macros-0.7.4\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"sqlx_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-macros-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_rt-tokio","default","json","migrate","postgres","sqlite"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\sqlx_macros-ac783f83cbc0f0f9.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\sqlx_macros-ac783f83cbc0f0f9.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\sqlx_macros-ac783f83cbc0f0f9.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\sqlx_macros-ac783f83cbc0f0f9.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx-sqlite@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-sqlite-0.7.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlx_sqlite","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-sqlite-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["any","json","migrate","serde"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_sqlite-b35ebe2dce53b32b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx-postgres@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-postgres-0.7.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlx_postgres","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-postgres-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["any","json","migrate"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx_postgres-a44ec6e89d4f7af1.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.11.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_generator","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_generator-cf74527914113204.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_generator-cf74527914113204.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-rustls-0.26.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_rustls","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-rustls-0.26.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ring","tls12"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio_rustls-4305d8143c5849a3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.6.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_http","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.6.8\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["follow-redirect","futures-util","iri-string","tower"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtower_http-cab124d875e65a5a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.11.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_generator","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_generator-cf74527914113204.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_generator-cf74527914113204.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures@0.3.32","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-0.3.32\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futures-0.3.32\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","async-await","default","executor","futures-executor","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutures-68d04ac8826e607e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-util-0.7.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_util","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-util-0.7.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["io"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio_util-306a133af14fa659.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#powerfmt@0.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\powerfmt-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"powerfmt","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\powerfmt-0.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpowerfmt-853dc3a7d220fd2f.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-conv@0.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_conv","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnum_conv-7b1f5c642c54e1ce.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libnum_conv-7b1f5c642c54e1ce.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#siphasher@0.3.11","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-0.3.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-0.3.11\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsiphasher-0c86352b62696053.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsiphasher-0c86352b62696053.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time-core@0.1.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"time_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.8\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtime_core-d466b1ab5b2b55b8.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtime_core-d466b1ab5b2b55b8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-conv@0.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_conv","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnum_conv-7b1f5c642c54e1ce.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libnum_conv-7b1f5c642c54e1ce.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#powerfmt@0.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\powerfmt-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"powerfmt","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\powerfmt-0.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpowerfmt-853dc3a7d220fd2f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#siphasher@0.3.11","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-0.3.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-0.3.11\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsiphasher-0c86352b62696053.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsiphasher-0c86352b62696053.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex@1.12.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.12.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.12.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","perf","perf-backtrack","perf-cache","perf-dfa","perf-inline","perf-literal","perf-onepass","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libregex-c2471f31985d99ee.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-conv@0.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_conv","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-conv-0.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnum_conv-9f5ac2e12a234841.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time-core@0.1.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"time_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.8\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtime_core-f07c53fd73734eb8.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.1.16","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.1.16\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.1.16\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\getrandom-cd5359f72234e5cd\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\getrandom-cd5359f72234e5cd\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-0.7.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlx","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_rt-tokio","any","default","json","macros","migrate","postgres","runtime-tokio","sqlite","sqlx-macros","sqlx-postgres","sqlx-sqlite"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx-c9f0fd743ce5b5eb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time-core@0.1.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"time_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-core-0.1.8\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtime_core-f07c53fd73734eb8.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-rustls-0.27.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_rustls","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-rustls-0.27.7\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["http1","ring","tls12","webpki-roots","webpki-tokio"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhyper_rustls-c31d547dc8135f7f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sqlx@0.7.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-0.7.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sqlx","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sqlx-0.7.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_rt-tokio","any","default","json","macros","migrate","postgres","runtime-tokio","sqlite","sqlx-macros","sqlx-postgres","sqlx-sqlite"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsqlx-c9f0fd743ce5b5eb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#deranged@0.5.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\deranged-0.5.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"deranged","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\deranged-0.5.8\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","powerfmt"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libderanged-3cec574ebb58703f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time-macros@0.2.27","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-macros-0.2.27\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"time_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-macros-0.2.27\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["formatting","parsing"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\time_macros-2bd373e92b13421a.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\time_macros-2bd373e92b13421a.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\time_macros-2bd373e92b13421a.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\time_macros-2bd373e92b13421a.pdb"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.1.16","linked_libs":["advapi32"],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\getrandom-ec80af7a8963a5e9\\out"} @@ -397,8 +397,8 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_macros@0.11.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-0.11.3\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"phf_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\phf_macros-515f4dc1a9bea16c.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\phf_macros-515f4dc1a9bea16c.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\phf_macros-515f4dc1a9bea16c.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\phf_macros-515f4dc1a9bea16c.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#secrecy@0.8.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\secrecy-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"secrecy","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\secrecy-0.8.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsecrecy-dbf004e63795e05e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thiserror-2.0.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libthiserror-aef23423cdced635.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libthiserror-aef23423cdced635.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.10","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.10\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.10\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\erased-serde-46a82444d4cbd3d3\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\erased-serde-46a82444d4cbd3d3\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime-0.3.17\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mime","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mime-0.3.17\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmime-518a52c51f0488c0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.10","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.10\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.10\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\erased-serde-46a82444d4cbd3d3\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\erased-serde-46a82444d4cbd3d3\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.28","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.12.28\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"reqwest","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\reqwest-0.12.28\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["__rustls","__rustls-ring","__tls","blocking","json","rustls-tls","rustls-tls-webpki-roots","rustls-tls-webpki-roots-no-provider","stream"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libreqwest-3751a067d71c9c73.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#time@0.3.47","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-0.3.47\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"time","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\time-0.3.47\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","formatting","macros","parsing","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtime-64af4d10e3060f59.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.1.16","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.1.16\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\getrandom-0.1.16\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libgetrandom-9f8ea56ef7657c7b.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libgetrandom-9f8ea56ef7657c7b.rmeta"],"executable":null,"fresh":true} @@ -409,103 +409,103 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.8.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.8.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_shared-2d58b7bb152fd2b3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_shared-2d58b7bb152fd2b3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-hack@0.5.20+deprecated","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro-hack-0.5.20+deprecated\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro-hack-0.5.20+deprecated\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\proc-macro-hack-cbd312777f663418\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\proc-macro-hack-cbd312777f663418\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.10.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.10.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.10.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_shared-25e6ff7ef215b15c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_shared-25e6ff7ef215b15c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-38540bf3181b7a31\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-38540bf3181b7a31\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#new_debug_unreachable@1.0.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\new_debug_unreachable-1.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"debug_unreachable","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\new_debug_unreachable-1.0.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdebug_unreachable-889979829d793b5c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdebug_unreachable-889979829d793b5c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-38540bf3181b7a31\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-38540bf3181b7a31\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#string_cache_codegen@0.5.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache_codegen-0.5.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"string_cache_codegen","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache_codegen-0.5.4\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libstring_cache_codegen-c17e629defef761b.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libstring_cache_codegen-c17e629defef761b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.11.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_codegen-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_codegen","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_codegen-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_codegen-01687adebd8e88fa.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_codegen-01687adebd8e88fa.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#precomputed-hash@0.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\precomputed-hash-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"precomputed_hash","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\precomputed-hash-0.1.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libprecomputed_hash-634c828c56dc7d76.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libprecomputed_hash-634c828c56dc7d76.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winnow@1.0.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-1.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winnow","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-1.0.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwinnow-9ee7cd2e9995a9a3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwinnow-9ee7cd2e9995a9a3.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mac@0.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mac-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mac","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mac-0.1.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmac-a0abb79624ece128.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libmac-a0abb79624ece128.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.5.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.5.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_core-0.5.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand_core-26787f5a8eeaa269.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\librand_core-26787f5a8eeaa269.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml@0.8.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.8.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.8.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","display","parse"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml-d0e40a81af24dc81.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#darling_macro@0.23.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\darling_macro-0.23.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"darling_macro","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\darling_macro-0.23.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\darling_macro-4ead6573bcd5db81.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\darling_macro-4ead6573bcd5db81.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\darling_macro-4ead6573bcd5db81.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\darling_macro-4ead6573bcd5db81.pdb"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-hack@0.5.20+deprecated","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\proc-macro-hack-7bd31827dd681ea7\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.10.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.10.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_generator","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.10.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_generator-d8886751da937276.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_generator-d8886751da937276.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6","linked_libs":[],"linked_paths":["native=C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-3b036064a14243f2\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#precomputed-hash@0.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\precomputed-hash-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"precomputed_hash","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\precomputed-hash-0.1.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libprecomputed_hash-634c828c56dc7d76.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libprecomputed_hash-634c828c56dc7d76.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futf@0.1.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futf-0.1.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futf-0.1.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutf-7e82e43822a17710.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutf-7e82e43822a17710.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mac@0.1.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mac-0.1.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mac","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\mac-0.1.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmac-a0abb79624ece128.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libmac-a0abb79624ece128.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#markup5ever@0.14.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\markup5ever-0.14.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\markup5ever-0.14.1\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\markup5ever-406e6651f51e645d\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\markup5ever-406e6651f51e645d\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.1.0+spec-1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_parser-1.1.0+spec-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_parser","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_parser-1.1.0+spec-1.1.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml_parser-84b658c8511e8ea4.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml_parser-84b658c8511e8ea4.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dashmap@6.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dashmap-6.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dashmap","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dashmap-6.1.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdashmap-9103129624b622d8.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser@0.29.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.29.6\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.29.6\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\cssparser-afeda6e8c4222d84\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\cssparser-afeda6e8c4222d84\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\inout-0.1.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"inout","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\inout-0.1.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libinout-a52749241ba0cf6c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_spanned","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-1.1.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_spanned-f79897c82ca983d1.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_spanned-f79897c82ca983d1.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#semver@1.0.27","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\semver-1.0.27\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"semver","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\semver-1.0.27\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsemver-942707f32eaf061c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsemver-942707f32eaf061c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.7.5+spec-1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_datetime-0.7.5+spec-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_datetime","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_datetime-0.7.5+spec-1.1.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml_datetime-1527746ff9aa5b2e.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml_datetime-1527746ff9aa5b2e.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_spanned","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-1.1.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_spanned-f79897c82ca983d1.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_spanned-f79897c82ca983d1.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.2.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.2.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand_chacha-ba3e329a09abdbb2.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\librand_chacha-ba3e329a09abdbb2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\crc32fast-c437355b07a76b54\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\crc32fast-c437355b07a76b54\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_pcg@0.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_pcg-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_pcg","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_pcg-0.2.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand_pcg-24670f79d4f334fe.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\librand_pcg-24670f79d4f334fe.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.2.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand_chacha-0.2.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand_chacha-ba3e329a09abdbb2.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\librand_chacha-ba3e329a09abdbb2.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#darling@0.23.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\darling-0.23.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"darling","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\darling-0.23.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","suggestions"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdarling-109dbda947fe0c6d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdarling-109dbda947fe0c6d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-hack@0.5.20+deprecated","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro-hack-0.5.20+deprecated\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"proc_macro_hack","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\proc-macro-hack-0.5.20+deprecated\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\proc_macro_hack-51d70a37c357b76f.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\proc_macro_hack-51d70a37c357b76f.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\proc_macro_hack-51d70a37c357b76f.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\proc_macro_hack-51d70a37c357b76f.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-1.3.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-1.3.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbitflags-5588fd7a3e032978.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbitflags-5588fd7a3e032978.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dtoa@1.0.11","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-1.0.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dtoa","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-1.0.11\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdtoa-a185bfae7e7afe1d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdtoa-a185bfae7e7afe1d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\crc32fast-c437355b07a76b54\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\crc32fast-c437355b07a76b54\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.15","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-0.7.15\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winnow","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-0.7.15\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwinnow-52e96921a83295d3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwinnow-52e96921a83295d3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futf@0.1.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futf-0.1.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\futf-0.1.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfutf-7e82e43822a17710.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfutf-7e82e43822a17710.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.1.0+spec-1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_writer-1.1.0+spec-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_writer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_writer-1.1.0+spec-1.1.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml_writer-893d7099c3ce9bf9.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml_writer-893d7099c3ce9bf9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-1.3.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bitflags-1.3.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbitflags-5588fd7a3e032978.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbitflags-5588fd7a3e032978.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.15","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-0.7.15\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winnow","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-0.7.15\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwinnow-52e96921a83295d3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwinnow-52e96921a83295d3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dtoa@1.0.11","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-1.0.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dtoa","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-1.0.11\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdtoa-a185bfae7e7afe1d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdtoa-a185bfae7e7afe1d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf-8@0.7.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf-8-0.7.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\utf-8-0.7.6\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libutf8-a3f4ade5a91b179c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libutf8-a3f4ade5a91b179c.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser@0.29.6","linked_libs":[],"linked_paths":[],"cfgs":["rustc_has_pr45225"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\cssparser-e497f5113bbd47c6\\out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#markup5ever@0.14.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\markup5ever-770189498b0f0af6\\out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","linked_libs":[],"linked_paths":[],"cfgs":["stable_arm_crc32_intrinsics"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\crc32fast-c08acdca17d20e73\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cipher-0.4.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cipher","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cipher-0.4.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcipher-260b63ff87c4ea09.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#string_cache@0.8.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache-0.8.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"string_cache","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\string_cache-0.8.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","serde_support"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libstring_cache-d96eac8193d6e2fb.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libstring_cache-d96eac8193d6e2fb.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser@0.29.6","linked_libs":[],"linked_paths":[],"cfgs":["rustc_has_pr45225"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\cssparser-e497f5113bbd47c6\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf@0.11.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","macros","phf_macros","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf-18d7a1db1fd8c395.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf-18d7a1db1fd8c395.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.22.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"uuid","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.22.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","rng","serde","std","v4"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libuuid-bb7a16d0acdd0429.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libuuid-bb7a16d0acdd0429.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.7.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.7.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rand-0.7.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","getrandom","getrandom_package","libc","rand_pcg","small_rng","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librand-967e2527ead2c5dc.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\librand-967e2527ead2c5dc.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_with_macros@3.18.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with_macros-3.18.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_with_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with_macros-3.18.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\serde_with_macros-7f50894632c31561.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\serde_with_macros-7f50894632c31561.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\serde_with_macros-7f50894632c31561.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\serde_with_macros-7f50894632c31561.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_macros@0.10.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-0.10.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"phf_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_macros-0.10.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\phf_macros-cfad9ad55a597881.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\phf_macros-cfad9ad55a597881.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\phf_macros-cfad9ad55a597881.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\phf_macros-cfad9ad55a597881.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tendril@0.4.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tendril-0.4.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tendril","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tendril-0.4.3\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtendril-2c00be1ca956e2f2.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtendril-2c00be1ca956e2f2.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","linked_libs":[],"linked_paths":[],"cfgs":["stable_arm_crc32_intrinsics"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\crc32fast-c08acdca17d20e73\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml@0.9.12+spec-1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.9.12+spec-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.9.12+spec-1.1.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","display","parse","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml-75667c301e926f8b.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml-75667c301e926f8b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dtoa-short@0.3.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-short-0.3.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dtoa_short","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dtoa-short-0.3.5\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdtoa_short-e46b7df227f2cbce.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdtoa_short-e46b7df227f2cbce.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tendril@0.4.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tendril-0.4.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tendril","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tendril-0.4.3\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtendril-2c00be1ca956e2f2.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtendril-2c00be1ca956e2f2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#uuid@1.22.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.22.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"uuid","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\uuid-1.22.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","rng","serde","std","v4"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libuuid-bb7a16d0acdd0429.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libuuid-bb7a16d0acdd0429.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#universal-hash@0.5.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\universal-hash-0.5.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"universal_hash","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\universal-hash-0.5.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libuniversal_hash-83cd60354fb009f4.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aho-corasick-1.1.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aho-corasick-1.1.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["perf-literal","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaho_corasick-7ec4c481ab2c3642.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libaho_corasick-7ec4c481ab2c3642.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ctor@0.2.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ctor-0.2.9\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"ctor","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ctor-0.2.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\ctor-2fc35b9693c20783.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\ctor-2fc35b9693c20783.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\ctor-2fc35b9693c20783.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\ctor-2fc35b9693c20783.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser-macros@0.6.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-macros-0.6.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"cssparser_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-macros-0.6.1\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\cssparser_macros-5037dae51de1fc71.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\cssparser_macros-5037dae51de1fc71.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\cssparser_macros-5037dae51de1fc71.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\cssparser_macros-5037dae51de1fc71.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aho-corasick-1.1.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aho-corasick-1.1.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["perf-literal","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaho_corasick-7ec4c481ab2c3642.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libaho_corasick-7ec4c481ab2c3642.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-1.9.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-1.9.3\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["serde","serde-1"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\indexmap-8102e36b11e13b7e\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\indexmap-8102e36b11e13b7e\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-range-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_char_range","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-range-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_char_range-2792277328b8b485.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_char_range-2792277328b8b485.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#convert_case@0.4.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\convert_case-0.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"convert_case","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\convert_case-0.4.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libconvert_case-035968048cee4e70.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libconvert_case-035968048cee4e70.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.10","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-syntax-0.8.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-syntax-0.8.10\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libregex_syntax-3ad1818817fc9fb3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libregex_syntax-3ad1818817fc9fb3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-range-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_char_range","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-range-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_char_range-2792277328b8b485.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_char_range-2792277328b8b485.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-link@0.1.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_link","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-link-0.1.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_link-b163e6ad541091a3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#alloc-no-stdlib@2.0.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-no-stdlib-2.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"alloc_no_stdlib","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-no-stdlib-2.0.4\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liballoc_no_stdlib-81019944c0017388.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liballoc_no_stdlib-81019944c0017388.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_generator@0.8.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_generator","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_generator-0.8.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_generator-1f2cfb5a73a39ea0.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_generator-1f2cfb5a73a39ea0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf@0.10.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.10.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","macros","phf_macros","proc-macro-hack","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf-e0af0f50d02b1a87.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf-e0af0f50d02b1a87.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-common-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_common","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-common-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_common-464bffba2e3696c1.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_common-464bffba2e3696c1.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#alloc-no-stdlib@2.0.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-no-stdlib-2.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"alloc_no_stdlib","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-no-stdlib-2.0.4\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liballoc_no_stdlib-81019944c0017388.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liballoc_no_stdlib-81019944c0017388.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nodrop@0.1.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nodrop-0.1.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nodrop","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nodrop-0.1.14\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnodrop-e61222ef8f993d82.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libnodrop-e61222ef8f993d82.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#convert_case@0.4.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\convert_case-0.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"convert_case","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\convert_case-0.4.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libconvert_case-035968048cee4e70.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libconvert_case-035968048cee4e70.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#camino@1.2.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\camino-1.2.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\camino-1.2.2\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["serde1"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\camino-562a946e71c7f455\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\camino-562a946e71c7f455\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-common-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_common","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-common-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_common-464bffba2e3696c1.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_common-464bffba2e3696c1.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#matches@0.1.10","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\matches-0.1.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"matches","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\matches-0.1.10\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmatches-318ee57524fb206e.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libmatches-318ee57524fb206e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nodrop@0.1.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nodrop-0.1.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nodrop","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nodrop-0.1.14\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnodrop-e61222ef8f993d82.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libnodrop-e61222ef8f993d82.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#opaque-debug@0.3.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\opaque-debug-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"opaque_debug","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\opaque-debug-0.3.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libopaque_debug-dd983f5cde39ed4d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\derive_more-0.99.20\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"derive_more","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\derive_more-0.99.20\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["add","add_assign","as_mut","as_ref","constructor","convert_case","default","deref","deref_mut","display","error","from","from_str","index","index_mut","into","into_iterator","is_variant","iterator","mul","mul_assign","not","rustc_version","sum","try_into","unwrap"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\derive_more-00dddcc98797d834.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\derive_more-00dddcc98797d834.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\derive_more-00dddcc98797d834.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\derive_more-00dddcc98797d834.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","dfa-onepass","hybrid","meta","nfa-backtrack","nfa-pikevm","nfa-thompson","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libregex_automata-acbb339b57600f2a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libregex_automata-acbb339b57600f2a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#markup5ever@0.14.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\markup5ever-0.14.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"markup5ever","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\markup5ever-0.14.1\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmarkup5ever-a83e4f435ac249b6.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libmarkup5ever-a83e4f435ac249b6.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3","linked_libs":[],"linked_paths":[],"cfgs":["has_std"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\indexmap-3a8c8c155e381f3c\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-property-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_char_property","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-property-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_char_property-b6813179bbf7dd9e.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_char_property-b6813179bbf7dd9e.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typeid@1.0.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typeid","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-1.0.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtypeid-13546ddb855d8b3e.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtypeid-13546ddb855d8b3e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.14","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-automata-0.4.14\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","dfa-onepass","hybrid","meta","nfa-backtrack","nfa-pikevm","nfa-thompson","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libregex_automata-acbb339b57600f2a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libregex_automata-acbb339b57600f2a.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3","linked_libs":[],"linked_paths":[],"cfgs":["has_std"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\indexmap-3a8c8c155e381f3c\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#alloc-stdlib@0.2.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"alloc_stdlib","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liballoc_stdlib-a4590906e34d4d78.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liballoc_stdlib-a4590906e34d4d78.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf@0.8.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.8.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf-fab4add640818e82.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf-fab4add640818e82.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typeid@1.0.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typeid","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-1.0.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtypeid-13546ddb855d8b3e.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtypeid-13546ddb855d8b3e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fxhash@0.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fxhash-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fxhash","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fxhash-0.2.1\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfxhash-da89aa2b10df42e1.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfxhash-da89aa2b10df42e1.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_codegen@0.8.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_codegen-0.8.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_codegen","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_codegen-0.8.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_codegen-b72437c9779c3761.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_codegen-b72437c9779c3761.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#alloc-stdlib@0.2.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"alloc_stdlib","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liballoc_stdlib-a4590906e34d4d78.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liballoc_stdlib-a4590906e34d4d78.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-version-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_ucd_version","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-version-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_ucd_version-a2f967a12216d841.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_ucd_version-a2f967a12216d841.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#servo_arc@0.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\servo_arc-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"servo_arc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\servo_arc-0.2.0\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libservo_arc-4668c23122b5859c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libservo_arc-4668c23122b5859c.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#camino@1.2.2","linked_libs":[],"linked_paths":[],"cfgs":["try_reserve_2","path_buf_deref_mut","os_str_bytes","absolute_path","os_string_pathbuf_leak","path_add_extension","pathbuf_const_new"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\camino-0c4e0705d29bbab5\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\derive_more-0.99.20\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"derive_more","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\derive_more-0.99.20\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["add","add_assign","as_mut","as_ref","constructor","convert_case","default","deref","deref_mut","display","error","from","from_str","index","index_mut","into","into_iterator","is_variant","iterator","mul","mul_assign","not","rustc_version","sum","try_into","unwrap"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\derive_more-00dddcc98797d834.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\derive_more-00dddcc98797d834.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\derive_more-00dddcc98797d834.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\derive_more-00dddcc98797d834.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#servo_arc@0.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\servo_arc-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"servo_arc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\servo_arc-0.2.0\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libservo_arc-4668c23122b5859c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libservo_arc-4668c23122b5859c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#polyval@0.6.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\polyval-0.6.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"polyval","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\polyval-0.6.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpolyval-e96f197b89dabd49.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cssparser@0.29.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.29.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cssparser","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cssparser-0.29.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcssparser-67dd00a6b4c5b7bb.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcssparser-67dd00a6b4c5b7bb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_derive_internals@0.29.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_derive_internals-0.29.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_derive_internals","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_derive_internals-0.29.1\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_derive_internals-8e3ece2812a80cd4.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_derive_internals-8e3ece2812a80cd4.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#match_token@0.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\match_token-0.1.0\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"match_token","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\match_token-0.1.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\match_token-c075699b6c307889.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\match_token-c075699b6c307889.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\match_token-c075699b6c307889.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\match_token-c075699b6c307889.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.11","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-util-0.1.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winapi_util","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-util-0.1.11\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwinapi_util-fe3c476254ee5d52.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwinapi_util-fe3c476254ee5d52.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fnv-1.0.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fnv","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fnv-1.0.7\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfnv-f7f222456fac6fc7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfnv-f7f222456fac6fc7.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.12.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.12.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["raw"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-414d58f220eaf8d7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-414d58f220eaf8d7.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.22","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-0.8.22\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-0.8.22\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","derive","indexmap","preserve_order","schemars_derive","url","uuid1"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\schemars-63f73b39a3508167\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\schemars-63f73b39a3508167\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.12.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.12.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hashbrown-0.12.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["raw"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-414d58f220eaf8d7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhashbrown-414d58f220eaf8d7.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex@1.12.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.12.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\regex-1.12.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","perf","perf-backtrack","perf-cache","perf-dfa","perf-inline","perf-literal","perf-onepass","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libregex-a101e353e8ecbbbf.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libregex-a101e353e8ecbbbf.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli-decompressor@5.0.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli_decompressor","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc-stdlib","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli_decompressor-b74ede104ff9ce31.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli_decompressor-b74ede104ff9ce31.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.10","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"erased_serde","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.10\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liberased_serde-2968119fa0dd58dc.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liberased_serde-2968119fa0dd58dc.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ctr-0.9.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ctr","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ctr-0.9.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libctr-d898a146949bcba4.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#selectors@0.24.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.24.0\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\selectors-0.24.0\\build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\selectors-82d7fcd090577463\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\selectors-82d7fcd090577463\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@1.9.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-1.9.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"indexmap","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\indexmap-1.9.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["serde","serde-1"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libindexmap-bf5b173e89c2ceb1.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libindexmap-bf5b173e89c2ceb1.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars_derive@0.8.22","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars_derive-0.8.22\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"schemars_derive","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars_derive-0.8.22\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\schemars_derive-ad2033869c74dc8e.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\schemars_derive-ad2033869c74dc8e.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\schemars_derive-ad2033869c74dc8e.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\schemars_derive-ad2033869c74dc8e.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ghash@0.5.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ghash-0.5.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ghash","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ghash-0.5.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libghash-b9bf49faf3368d4a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#camino@1.2.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\camino-1.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"camino","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\camino-1.2.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["serde1"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcamino-4450de0bfc26e58c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcamino-4450de0bfc26e58c.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.22","linked_libs":[],"linked_paths":[],"cfgs":["std_atomic64","std_atomic"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\schemars-a63b649eac11e308\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-ucd-ident@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-ident-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_ucd_ident","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-ident-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","id","xid"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_ucd_ident-6ddc5b7d24b95d33.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_ucd_ident-6ddc5b7d24b95d33.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"same_file","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsame_file-6a8aac73dc17fb89.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsame_file-6a8aac73dc17fb89.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#html5ever@0.29.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\html5ever-0.29.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"html5ever","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\html5ever-0.29.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhtml5ever-cfde8e6739578817.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhtml5ever-cfde8e6739578817.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfb@0.7.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfb-0.7.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfb","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfb-0.7.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcfb-078c99ef3c8fda11.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcfb-078c99ef3c8fda11.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli-decompressor@5.0.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli_decompressor","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc-stdlib","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli_decompressor-b74ede104ff9ce31.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli_decompressor-b74ede104ff9ce31.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.22","linked_libs":[],"linked_paths":[],"cfgs":["std_atomic64","std_atomic"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\schemars-a63b649eac11e308\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#html5ever@0.29.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\html5ever-0.29.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"html5ever","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\html5ever-0.29.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhtml5ever-cfde8e6739578817.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhtml5ever-cfde8e6739578817.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-ucd-ident@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-ident-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_ucd_ident","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-ident-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","id","xid"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_ucd_ident-6ddc5b7d24b95d33.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_ucd_ident-6ddc5b7d24b95d33.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars_derive@0.8.22","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars_derive-0.8.22\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"schemars_derive","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars_derive-0.8.22\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\schemars_derive-ad2033869c74dc8e.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\schemars_derive-ad2033869c74dc8e.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\schemars_derive-ad2033869c74dc8e.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\schemars_derive-ad2033869c74dc8e.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"same_file","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsame_file-6a8aac73dc17fb89.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsame_file-6a8aac73dc17fb89.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ctr@0.9.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ctr-0.9.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ctr","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ctr-0.9.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libctr-d898a146949bcba4.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aes-0.8.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aes","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aes-0.8.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaes-28121950a920b07f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jsonptr@0.6.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonptr-0.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jsonptr","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonptr-0.6.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["assign","default","delete","json","resolve","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libjsonptr-2dc58a397464ea77.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libjsonptr-2dc58a397464ea77.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aead@0.5.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aead-0.5.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aead","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aead-0.5.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","rand_core"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaead-f832ad5e67c6fe2b.rmeta"],"executable":null,"fresh":true} @@ -514,15 +514,15 @@ {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#selectors@0.24.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\selectors-762105d196d46499\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.20","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dyn-clone-1.0.20\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dyn_clone","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dyn-clone-1.0.20\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdyn_clone-5d1944447d659ce1.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdyn_clone-5d1944447d659ce1.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dunce-1.0.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dunce","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dunce-1.0.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdunce-9a2f44637c9cbe0c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdunce-9a2f44637c9cbe0c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#json-patch@3.0.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\json-patch-3.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"json_patch","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\json-patch-3.0.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","diff"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libjson_patch-df9ab7c498bf3729.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libjson_patch-df9ab7c498bf3729.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#urlpattern@0.3.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlpattern-0.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"urlpattern","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlpattern-0.3.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liburlpattern-2b4d5bdc7c286c6c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liburlpattern-2b4d5bdc7c286c6c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli@8.0.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.0.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc-stdlib","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli-bf3a214dca01f18c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli-bf3a214dca01f18c.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22","linked_libs":[],"linked_paths":[],"cfgs":["host_os=\"windows\""],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\rustversion-23c725d86aa10190\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aes-gcm@0.10.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aes-gcm-0.10.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aes_gcm","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aes-gcm-0.10.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aes","alloc","default","getrandom","rand_core"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaes_gcm-3796e308f3e8d34a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#infer@0.19.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"infer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","cfb","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libinfer-608e88b2ecae910d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libinfer-608e88b2ecae910d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cargo_metadata@0.19.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cargo_metadata-0.19.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cargo_metadata","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cargo_metadata-0.19.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcargo_metadata-d7fd28a834246400.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcargo_metadata-d7fd28a834246400.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\walkdir-2.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"walkdir","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\walkdir-2.5.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwalkdir-d0f3fc8815ffc8cc.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwalkdir-d0f3fc8815ffc8cc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#infer@0.19.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"infer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","cfb","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libinfer-608e88b2ecae910d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libinfer-608e88b2ecae910d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aes-gcm@0.10.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aes-gcm-0.10.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aes_gcm","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\aes-gcm-0.10.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aes","alloc","default","getrandom","rand_core"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaes_gcm-3796e308f3e8d34a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#json-patch@3.0.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\json-patch-3.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"json_patch","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\json-patch-3.0.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","diff"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libjson_patch-df9ab7c498bf3729.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libjson_patch-df9ab7c498bf3729.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde-untagged@0.1.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-untagged-0.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_untagged","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-untagged-0.1.9\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_untagged-bc446d160a3ee6d3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_untagged-bc446d160a3ee6d3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli@8.0.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.0.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc-stdlib","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli-bf3a214dca01f18c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli-bf3a214dca01f18c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-result@0.3.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-result-0.3.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_result","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-result-0.3.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_result-336088cba19a27ea.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_with@3.18.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with-3.18.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_with","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with-3.18.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","macros","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_with-f9486b2ec81ddfb9.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_with-f9486b2ec81ddfb9.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-strings@0.4.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-strings-0.4.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_strings","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-strings-0.4.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_strings-108b9b117a0da6b1.rmeta"],"executable":null,"fresh":true} @@ -531,12 +531,12 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars@0.8.22","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-0.8.22\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"schemars","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schemars-0.8.22\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","derive","indexmap","preserve_order","schemars_derive","url","uuid1"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libschemars-470c8b7aa2ef98f1.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libschemars-470c8b7aa2ef98f1.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.102","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.102\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anyhow","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\anyhow-1.0.102\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libanyhow-dc5b79efbb4b6a1c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libanyhow-dc5b79efbb4b6a1c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http@1.4.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-1.4.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-1.4.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhttp-b6f64480fc246b56.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libhttp-b6f64480fc246b56.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.60.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-implement-0.60.2\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"windows_implement","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-implement-0.60.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\windows_implement-2f4d20b099edd44b.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\windows_implement-2f4d20b099edd44b.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\windows_implement-2f4d20b099edd44b.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\windows_implement-2f4d20b099edd44b.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-interface@0.59.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-interface-0.59.3\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"windows_interface","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-interface-0.59.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\windows_interface-30a2489ce32957ac.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\windows_interface-30a2489ce32957ac.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\windows_interface-30a2489ce32957ac.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\windows_interface-30a2489ce32957ac.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#vswhom-sys@0.1.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vswhom-sys-0.1.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vswhom-sys-0.1.3\\build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\vswhom-sys-435565851efc011c\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\vswhom-sys-435565851efc011c\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-implement@0.60.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-implement-0.60.2\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"windows_implement","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-implement-0.60.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\windows_implement-2f4d20b099edd44b.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\windows_implement-2f4d20b099edd44b.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\windows_implement-2f4d20b099edd44b.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\windows_implement-2f4d20b099edd44b.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glob@0.3.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glob-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glob","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glob-0.3.3\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libglob-fa014e2045aeba83.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libglob-fa014e2045aeba83.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.52.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_targets","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.52.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_targets-d4e125ed56a03f0c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_targets-d4e125ed56a03f0c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustversion-1.0.22\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"rustversion","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustversion-1.0.22\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\rustversion-7329796c67c0e937.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\rustversion-7329796c67c0e937.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\rustversion-7329796c67c0e937.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\rustversion-7329796c67c0e937.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.52.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_targets","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.52.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_targets-d4e125ed56a03f0c.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_targets-d4e125ed56a03f0c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-integer-0.1.46\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_integer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-integer-0.1.46\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["i128"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnum_integer-975ad198a8cacd7d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha1@0.10.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha1-0.10.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha1","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sha1-0.10.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsha1-b1c6b1fc1da1823e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.183","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.183\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\libc-0.2.183\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblibc-8b14278b63068026.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liblibc-8b14278b63068026.rmeta"],"executable":null,"fresh":true} @@ -544,16 +544,16 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fastrand-2.3.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfastrand-14a1950c3f2b961c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\option-ext-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"option_ext","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\option-ext-0.2.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liboption_ext-e76eb2cea6ae15e0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#kuchikiki@0.8.8-speedreader","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\kuchikiki-0.8.8-speedreader\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"kuchikiki","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\kuchikiki-0.8.8-speedreader\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libkuchikiki-73dd00069744e9f3.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libkuchikiki-73dd00069744e9f3.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-core@0.61.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-core-0.61.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-core-0.61.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_core-b289fa4ca667c9ca.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#vswhom-sys@0.1.3","linked_libs":["static=vswhom","dylib=OleAut32","dylib=Ole32"],"linked_paths":["native=G:\\ZClaw_openfang\\target\\debug\\build\\vswhom-sys-8c2787af9cf44e64\\out"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\vswhom-sys-8c2787af9cf44e64\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-core@0.61.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-core-0.61.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-core-0.61.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_core-b289fa4ca667c9ca.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-bigint-0.4.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_bigint","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-bigint-0.4.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnum_bigint-d6cbb359f81bf93c.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#multer@3.1.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\multer-a3bd752de7336e2f\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-sys-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-sys-0.5.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdirs_sys-e79b5dad500e4ca2.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#axum-core@0.4.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-core-0.4.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"axum_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-core-0.4.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["tracing"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaxum_core-12f00cb82cc6f368.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.59.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.59.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Foundation","Win32_Security","Win32_Storage","Win32_Storage_FileSystem","Win32_System","Win32_System_Diagnostics","Win32_System_Diagnostics_Debug","Win32_System_Registry","Win32_System_Time","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_sys-29dea2bf69c38d47.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_sys-29dea2bf69c38d47.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#multer@3.1.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\multer-a3bd752de7336e2f\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-bigint-0.4.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_bigint","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\num-bigint-0.4.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnum_bigint-d6cbb359f81bf93c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#headers-core@0.3.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\headers-core-0.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"headers_core","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\headers-core-0.3.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libheaders_core-e11380a6267470f8.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#axum-macros@0.4.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-macros-0.4.2\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"axum_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-macros-0.4.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\axum_macros-dc0ed0a4eab558d5.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\axum_macros-dc0ed0a4eab558d5.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\axum_macros-dc0ed0a4eab558d5.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\axum_macros-dc0ed0a4eab558d5.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.11","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-internal-1.1.11\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"pin_project_internal","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-internal-1.1.11\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\pin_project_internal-0e796f94c1d48a32.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\pin_project_internal-0e796f94c1d48a32.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\pin_project_internal-0e796f94c1d48a32.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\pin_project_internal-0e796f94c1d48a32.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#axum-macros@0.4.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-macros-0.4.2\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"axum_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-macros-0.4.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\axum_macros-dc0ed0a4eab558d5.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\axum_macros-dc0ed0a4eab558d5.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\axum_macros-dc0ed0a4eab558d5.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\axum_macros-dc0ed0a4eab558d5.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_path_to_error@0.1.20","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_path_to_error-0.1.20\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_path_to_error","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_path_to_error-0.1.20\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_path_to_error-e48144d7c580c4f3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\encoding_rs-0.8.35\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"encoding_rs","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\encoding_rs-0.8.35\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libencoding_rs-347ccd17707312c5.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lazy_static-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lazy_static","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\lazy_static-1.5.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liblazy_static-be5337d421f9f3ba.rmeta"],"executable":null,"fresh":true} @@ -561,15 +561,15 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#matchit@0.7.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\matchit-0.7.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"matchit","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\matchit-0.7.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmatchit-7451a936692699c1.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-utils@2.8.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-utils-2.8.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_utils","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-utils-2.8.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["brotli","build","cargo_metadata","compression","html-manipulation","proc-macro2","quote","resources","schema","schemars","swift-rs","walkdir"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_utils-098e932512f0d136.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_utils-098e932512f0d136.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#vswhom-sys@0.1.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vswhom-sys-0.1.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"vswhom_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\vswhom-sys-0.1.3\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libvswhom_sys-7922fc7174acbdfa.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libvswhom_sys-7922fc7174acbdfa.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sharded-slab-0.1.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sharded_slab","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sharded-slab-0.1.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsharded_slab-67041fc3fc4b5ec6.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#multer@3.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\multer-3.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"multer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\multer-3.1.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmulter-41958528585ec96c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.11","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-1.1.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_project","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-1.1.11\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpin_project-1c74805d9f2cd9dd.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#axum@0.7.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-0.7.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"axum","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-0.7.9\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","form","http1","json","macros","matched-path","original-uri","query","tokio","tower-log","tracing"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaxum-53e9f395864ea343.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winreg@0.55.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winreg-0.55.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winreg","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winreg-0.55.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwinreg-9226d5fd539d251d.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libwinreg-9226d5fd539d251d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\password-hash-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"password_hash","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\password-hash-0.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","rand_core"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpassword_hash-4c784acf444496d8.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#simple_asn1@0.6.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simple_asn1-0.6.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"simple_asn1","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simple_asn1-0.6.4\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsimple_asn1-73455016d1d0e5ac.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#headers@0.4.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\headers-0.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"headers","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\headers-0.4.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libheaders-9a549f89eb3eadef.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs@6.0.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-6.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-6.0.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdirs-346ca8a61ec9aaac.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#axum@0.7.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-0.7.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"axum","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-0.7.9\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","form","http1","json","macros","matched-path","original-uri","query","tokio","tower-log","tracing"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaxum-53e9f395864ea343.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#password-hash@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\password-hash-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"password_hash","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\password-hash-0.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","rand_core"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpassword_hash-4c784acf444496d8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.11","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-1.1.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_project","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\pin-project-1.1.11\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpin_project-1c74805d9f2cd9dd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sharded-slab-0.1.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sharded_slab","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\sharded-slab-0.1.7\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsharded_slab-67041fc3fc4b5ec6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#headers@0.4.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\headers-0.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"headers","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\headers-0.4.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libheaders-9a549f89eb3eadef.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-threading@0.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-threading-0.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_threading","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-threading-0.1.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_threading-bcc0c2a5caa3bda5.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustc_version-0.4.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustc_version","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\rustc_version-0.4.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librustc_version-eff81113c96570bb.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\librustc_version-eff81113c96570bb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#matchers@0.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\matchers-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"matchers","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\matchers-0.2.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmatchers-1f9e6d3dda1edb0a.rmeta"],"executable":null,"fresh":true} @@ -579,28 +579,28 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-log-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing_log","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-log-0.2.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["log-tracer","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtracing_log-5e9bdc25a18f6eac.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nu-ansi-term-0.50.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nu_ansi_term","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\nu-ansi-term-0.50.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnu_ansi_term-bea39cf5a6cf0669.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thread_local-1.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thread_local","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\thread_local-1.1.9\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libthread_local-625bf2c66a27cedb.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\shlex-1.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"shlex","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\shlex-1.3.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libshlex-121bbf3056a7e5fe.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fnv-1.0.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fnv","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fnv-1.0.7\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfnv-dba39155a26cac67.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\option-ext-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"option_ext","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\option-ext-0.2.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liboption_ext-742e5b2d7e928b3a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liboption_ext-742e5b2d7e928b3a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#base32@0.5.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base32-0.5.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base32","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base32-0.5.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbase32-3b5f935c959063b6.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#constant_time_eq@0.3.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\constant_time_eq-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"constant_time_eq","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\constant_time_eq-0.3.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libconstant_time_eq-07491b2bc5d49066.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#axum-extra@0.9.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-extra-0.9.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"axum_extra","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-extra-0.9.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","multipart","tracing","typed-header"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaxum_extra-6c0c5ae2b2d16c46.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#base32@0.5.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base32-0.5.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base32","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base32-0.5.1\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbase32-3b5f935c959063b6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\shlex-1.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"shlex","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\shlex-1.3.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libshlex-121bbf3056a7e5fe.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\option-ext-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"option_ext","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\option-ext-0.2.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liboption_ext-742e5b2d7e928b3a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\liboption_ext-742e5b2d7e928b3a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower@0.4.13","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-0.4.13\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-0.4.13\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["__common","default","futures-core","futures-util","log","pin-project","pin-project-lite","tracing","util"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtower-46e2a4d025773dee.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-future@0.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-future-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_future","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-future-0.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_future-427b6ca416772a47.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jsonwebtoken@9.3.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonwebtoken-9.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jsonwebtoken","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonwebtoken-9.3.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","pem","simple_asn1","use_pem"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libjsonwebtoken-ad20baafc9022c79.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#argon2@0.5.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\argon2-0.5.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"argon2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\argon2-0.5.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","password-hash","rand"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libargon2-cc1931719e7caeb9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jsonwebtoken@9.3.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonwebtoken-9.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jsonwebtoken","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonwebtoken-9.3.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","pem","simple_asn1","use_pem"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libjsonwebtoken-ad20baafc9022c79.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-future@0.2.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-future-0.2.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_future","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-future-0.2.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_future-427b6ca416772a47.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#axum-extra@0.9.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-extra-0.9.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"axum_extra","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\axum-extra-0.9.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","multipart","tracing","typed-header"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaxum_extra-6c0c5ae2b2d16c46.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-collections@0.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-collections-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_collections","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-collections-0.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_collections-2efaa813a71ec5c9.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-numerics@0.2.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-numerics-0.2.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_numerics","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-numerics-0.2.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_numerics-d3ea4932be572768.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#embed-resource@3.0.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\embed-resource-3.0.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"embed_resource","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\embed-resource-3.0.8\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libembed_resource-ac4a95e82a60d742.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libembed_resource-ac4a95e82a60d742.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-sys-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-sys-0.5.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdirs_sys-c47c8b6f393db4df.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdirs_sys-c47c8b6f393db4df.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#totp-rs@5.7.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\totp-rs-5.7.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"totp_rs","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\totp-rs-5.7.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtotp_rs-18153273cf8cade2.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.23","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-subscriber-0.3.23\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing_subscriber","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tracing-subscriber-0.3.23\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","ansi","default","env-filter","fmt","matchers","nu-ansi-term","once_cell","registry","sharded-slab","smallvec","std","thread_local","tracing","tracing-log"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtracing_subscriber-de0a5262687c615e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#totp-rs@5.7.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\totp-rs-5.7.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"totp_rs","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\totp-rs-5.7.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtotp_rs-18153273cf8cade2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-sys-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-sys-0.5.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdirs_sys-c47c8b6f393db4df.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdirs_sys-c47c8b6f393db4df.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-growth#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-growth\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_growth","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-growth\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"type `MemoryRow` is more private than the item `SqliteStorage::fetch_by_scope_priv`","code":{"code":"private_interfaces","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-growth\\src\\storage\\sqlite.rs","byte_start":10419,"byte_end":10526,"line_start":296,"line_end":296,"column_start":5,"column_end":112,"is_primary":true,"text":[{"text":" pub(crate) async fn fetch_by_scope_priv(&self, scope: Option<&str>, limit: usize) -> Result> {","highlight_start":5,"highlight_end":112}],"label":"method `SqliteStorage::fetch_by_scope_priv` is reachable at visibility `pub(crate)`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"but type `MemoryRow` is only usable at visibility `pub(self)`","code":null,"level":"note","spans":[{"file_name":"crates\\zclaw-growth\\src\\storage\\sqlite.rs","byte_start":907,"byte_end":923,"line_start":30,"line_end":30,"column_start":1,"column_end":17,"is_primary":true,"text":[{"text":"struct MemoryRow {","highlight_start":1,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"`#[warn(private_interfaces)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: type `MemoryRow` is more private than the item `SqliteStorage::fetch_by_scope_priv`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-growth\\src\\storage\\sqlite.rs:296:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m296\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub(crate) async fn fetch_by_scope_priv(&self, scope: Option<&str>, limit: usize) -> Result> {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[93mmethod `SqliteStorage::fetch_by_scope_priv` is reachable at visibility `pub(crate)`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but type `MemoryRow` is only usable at visibility `pub(self)`\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-growth\\src\\storage\\sqlite.rs:30:1\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m30\u001b[0m \u001b[1m\u001b[96m|\u001b[0m struct MemoryRow {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(private_interfaces)]` on by default\n\n"}} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-growth#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-growth\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_growth","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-growth\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_growth-a973618372ee825a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-http@0.5.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.5.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_http","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.5.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["cors","default","limit","trace","tracing"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtower_http-dcb1822d3a7b50ec.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-http@0.5.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.5.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_http","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tower-http-0.5.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["cors","default","limit","timeout","tokio","trace","tracing"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtower_http-f00644114427da32.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-stream-impl@0.3.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-stream-impl-0.3.6\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"async_stream_impl","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-stream-impl-0.3.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\async_stream_impl-cb09787b3815775e.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\async_stream_impl-cb09787b3815775e.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\async_stream_impl-cb09787b3815775e.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\async_stream_impl-cb09787b3815775e.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#data-encoding@2.10.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\data-encoding-2.10.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"data_encoding","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\data-encoding-2.10.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdata_encoding-76ee532495b7ae87.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"simd_adler32","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.8\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const-generics","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsimd_adler32-9cf57061cbb2119b.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libsimd_adler32-9cf57061cbb2119b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#data-encoding@2.10.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\data-encoding-2.10.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"data_encoding","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\data-encoding-2.10.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdata_encoding-76ee532495b7ae87.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"heck","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-0.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libheck-2e62c28013a79fb7.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libheck-2e62c28013a79fb7.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows@0.61.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-0.61.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-0.61.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Devices","Win32_Devices_HumanInterfaceDevice","Win32_Foundation","Win32_Globalization","Win32_Graphics","Win32_Graphics_Dwm","Win32_Graphics_Gdi","Win32_System","Win32_System_Com","Win32_System_Com_StructuredStorage","Win32_System_DataExchange","Win32_System_Diagnostics","Win32_System_Diagnostics_Debug","Win32_System_LibraryLoader","Win32_System_Memory","Win32_System_Ole","Win32_System_Registry","Win32_System_SystemInformation","Win32_System_SystemServices","Win32_System_Threading","Win32_System_Variant","Win32_System_WinRT","Win32_System_WindowsProgramming","Win32_UI","Win32_UI_Accessibility","Win32_UI_Controls","Win32_UI_HiDpi","Win32_UI_Input","Win32_UI_Input_Ime","Win32_UI_Input_KeyboardAndMouse","Win32_UI_Input_Pointer","Win32_UI_Input_Touch","Win32_UI_Shell","Win32_UI_Shell_Common","Win32_UI_TextServices","Win32_UI_WindowsAndMessaging","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows-b5da0824858dcf02.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tempfile@3.27.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tempfile-3.27.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tempfile","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tempfile-3.27.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","getrandom"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtempfile-cf22bdfb9d700699.rmeta"],"executable":null,"fresh":true} @@ -608,192 +608,226 @@ {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com-sys@0.38.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-sys-0.38.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-sys-0.38.2\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\webview2-com-sys-03f3410eb5976a74\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\webview2-com-sys-03f3410eb5976a74\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-memory#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-memory\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_memory","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-memory\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_memory-7289c3a08ea0eab1.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.18.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.18.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.18.1\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["percent-encode","percent-encoding"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\cookie-c316101ab46282c9\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\cookie-c316101ab46282c9\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs@6.0.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-6.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-6.0.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdirs-d6132535ebf29b37.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdirs-d6132535ebf29b37.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-winres@0.3.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-winres-0.3.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_winres","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-winres-0.3.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_winres-1e4f6b7edbca2657.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_winres-1e4f6b7edbca2657.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs@6.0.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-6.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dirs-6.0.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdirs-d6132535ebf29b37.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libdirs-d6132535ebf29b37.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-stream@0.3.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-stream-0.3.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_stream","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\async-stream-0.3.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libasync_stream-7225154e0a4309eb.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#raw-window-handle@0.6.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\raw-window-handle-0.6.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"raw_window_handle","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\raw-window-handle-0.6.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libraw_window_handle-47c5f7db46559479.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.13.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_segmentation","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.13.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_segmentation-d4ba5318584f9328.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#alloc-no-stdlib@2.0.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-no-stdlib-2.0.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"alloc_no_stdlib","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-no-stdlib-2.0.4\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liballoc_no_stdlib-da203dd7782a1fa8.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-common@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-common-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_common","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-common-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_common-8b557d25fcc5e69f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#raw-window-handle@0.6.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\raw-window-handle-0.6.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"raw_window_handle","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\raw-window-handle-0.6.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libraw_window_handle-47c5f7db46559479.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-char-range@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-range-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_char_range","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-range-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_char_range-0316be78d2d22072.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"simd_adler32","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\simd-adler32-0.3.8\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsimd_adler32-7e0d7ea8b3844b83.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.13.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.13.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_segmentation","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unicode-segmentation-1.13.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunicode_segmentation-d4ba5318584f9328.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\adler2-2.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"adler2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\adler2-2.0.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libadler2-6586caa2360024ca.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libadler2-6586caa2360024ca.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com-sys@0.38.2","linked_libs":["advapi32"],"linked_paths":["native=G:\\ZClaw_openfang\\target\\debug\\build\\webview2-com-sys-bc7387b6d790cc63\\out\\x64"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\webview2-com-sys-bc7387b6d790cc63\\out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.18.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\cookie-7edc8634dd70b957\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc32fast","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc32fast-99cc7270d43ba069.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com-sys@0.38.2","linked_libs":["advapi32"],"linked_paths":["native=G:\\ZClaw_openfang\\target\\debug\\build\\webview2-com-sys-bc7387b6d790cc63\\out\\x64"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\webview2-com-sys-bc7387b6d790cc63\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc32fast","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc32fast-6a53207e636b7af0.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc32fast-6a53207e636b7af0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc32fast","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crc32fast-1.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrc32fast-99cc7270d43ba069.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typeid@1.0.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-1.0.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typeid","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\typeid-1.0.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtypeid-fdece26a668dc6d2.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-version-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_ucd_version","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-version-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_ucd_version-898b3c9376435f2a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\miniz_oxide-0.8.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"miniz_oxide","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\miniz_oxide-0.8.9\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","simd","simd-adler32","with-alloc"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libminiz_oxide-c57b0f47195fc309.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libminiz_oxide-c57b0f47195fc309.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-property-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_char_property","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-property-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_char_property-6d0699c8d3c69172.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#alloc-stdlib@0.2.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"alloc_stdlib","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liballoc_stdlib-47e22877b9491673.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-build@2.5.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-build-2.5.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-build-2.5.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["config-json","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_build-f16c7c091a0c172a.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_build-f16c7c091a0c172a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#alloc-stdlib@0.2.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"alloc_stdlib","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\alloc-stdlib-0.2.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liballoc_stdlib-47e22877b9491673.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-ucd-version@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-version-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_ucd_version","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-version-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_ucd_version-898b3c9376435f2a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-char-property@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-property-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_char_property","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-char-property-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_char_property-6d0699c8d3c69172.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dpi@0.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dpi-0.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dpi","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dpi-0.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdpi-fdaea44503821c5b.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winapi-util@0.1.11","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-util-0.1.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winapi_util","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winapi-util-0.1.11\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwinapi_util-62ea897a4e0c54c2.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.1\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-21d5b550e6be9f77\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-21d5b550e6be9f77\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dunce-1.0.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dunce","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dunce-1.0.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdunce-aeef5caf93f583c0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winnow@1.0.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-1.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winnow","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-1.0.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwinnow-2ae827f60d9eea6e.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\adler2-2.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"adler2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\adler2-2.0.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libadler2-848c7795595b4eee.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dunce-1.0.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dunce","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\dunce-1.0.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdunce-aeef5caf93f583c0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#siphasher@1.0.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\siphasher-1.0.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsiphasher-a561846441c793a8.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com-sys@0.38.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-sys-0.38.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webview2_com_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-sys-0.38.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwebview2_com_sys-12aa0d2beb6f788a.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.10","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"erased_serde","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.10\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liberased_serde-620b5ef75f219b49.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-runtime#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-runtime\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_runtime","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-runtime\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_runtime-7fababe96c91903f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.18.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.18.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cookie","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.18.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["percent-encode","percent-encoding"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcookie-cdc0748b96150826.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com-sys@0.38.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-sys-0.38.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webview2_com_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-sys-0.38.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwebview2_com_sys-12aa0d2beb6f788a.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.1","linked_libs":[],"linked_paths":["native=C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.1\\lib"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-cad928dbe54d46bb\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"same_file","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsame_file-e260d2ead4395c51.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flate2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["any_impl","default","miniz_oxide","rust_backend"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libflate2-3efe50bafc61b901.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libflate2-3efe50bafc61b901.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.1.0+spec-1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_parser-1.1.0+spec-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_parser","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_parser-1.1.0+spec-1.1.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml_parser-2a65e145eb7d7fc4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli-decompressor@5.0.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli_decompressor","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc-stdlib","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli_decompressor-1eab6604618885ca.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\miniz_oxide-0.8.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"miniz_oxide","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\miniz_oxide-0.8.9\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd","simd-adler32","with-alloc"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libminiz_oxide-635bcef9cdb7e2c0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unic-ucd-ident@0.9.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-ident-0.9.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic_ucd_ident","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unic-ucd-ident-0.9.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","id","xid"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunic_ucd_ident-bca4e95037d11852.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf_shared@0.11.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf_shared-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf_shared-acc9a5361005439d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli-decompressor@5.0.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli_decompressor","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-decompressor-5.0.0\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc-stdlib","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli_decompressor-1eab6604618885ca.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.1","linked_libs":[],"linked_paths":["native=C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.1\\lib"],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\windows_x86_64_msvc-cad928dbe54d46bb\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"same_file","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\same-file-1.0.6\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsame_file-e260d2ead4395c51.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.18.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.18.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cookie","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.18.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["percent-encode","percent-encoding"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcookie-cdc0748b96150826.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.1.0+spec-1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_parser-1.1.0+spec-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_parser","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_parser-1.1.0+spec-1.1.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml_parser-2a65e145eb7d7fc4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.10","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.10\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"erased_serde","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\erased-serde-0.4.10\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liberased_serde-620b5ef75f219b49.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fdeflate@0.3.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fdeflate-0.3.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fdeflate","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fdeflate-0.3.7\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfdeflate-f4155a498e14e160.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libfdeflate-f4155a498e14e160.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfb@0.7.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfb-0.7.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfb","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cfb-0.7.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcfb-d006c17e11f77bf3.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#jsonptr@0.6.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonptr-0.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"jsonptr","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\jsonptr-0.6.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["assign","default","delete","json","resolve","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libjsonptr-ebf5ee296f0326a4.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com-macros@0.8.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-macros-0.8.1\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"webview2_com_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-macros-0.8.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\webview2_com_macros-84dcb25542f0fb60.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\webview2_com_macros-84dcb25542f0fb60.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\webview2_com_macros-84dcb25542f0fb60.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\webview2_com_macros-84dcb25542f0fb60.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_spanned","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-1.1.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_spanned-763a9ddc29d9df6c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.7.5+spec-1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_datetime-0.7.5+spec-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_datetime","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_datetime-0.7.5+spec-1.1.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml_datetime-2bb474ed78813c29.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_spanned","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_spanned-1.1.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_spanned-763a9ddc29d9df6c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-version@0.1.7","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-version-0.1.7\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_version","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-version-0.1.7\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_version-891da5421998f152.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.20.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bumpalo-3.20.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bumpalo","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bumpalo-3.20.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbumpalo-59a322df4845db92.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zip@2.4.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-2.4.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-2.4.2\\src\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_deflate-any","deflate","deflate-flate2","deflate-zopfli","flate2","zopfli"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\zip-2cb83daa4184be55\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\zip-2cb83daa4184be55\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.1.0+spec-1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_writer-1.1.0+spec-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_writer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml_writer-1.1.0+spec-1.1.0\\src\\lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml_writer-1e5f13242674e003.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bumpalo@3.20.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bumpalo-3.20.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bumpalo","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\bumpalo-3.20.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbumpalo-59a322df4845db92.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.15","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-0.7.15\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winnow","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\winnow-0.7.15\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwinnow-de267756eda08632.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\walkdir-2.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"walkdir","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\walkdir-2.5.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwalkdir-efcd40716ff09003.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli@8.0.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.0.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc-stdlib","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli-1e37a6fd147c7021.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf@0.11.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","macros","phf_macros","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf-dc4de28ed399b067.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#png@0.17.16","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.17.16\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"png","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.17.16\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpng-3d432c6eda631fbf.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libpng-3d432c6eda631fbf.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_x86_64_msvc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_x86_64_msvc-2627c42108f1f458.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com@0.38.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-0.38.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webview2_com","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-0.38.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwebview2_com-6d6cec0a6c032c58.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#infer@0.19.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"infer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","cfb","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libinfer-b5cc9348d155b3b6.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flate2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["any_impl","miniz_oxide","rust_backend"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libflate2-1b4ab7b5ac9a86cb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#json-patch@3.0.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\json-patch-3.0.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"json_patch","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\json-patch-3.0.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","diff"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libjson_patch-5b82d6293c9ccb52.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#phf@0.11.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.11.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\phf-0.11.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","macros","phf_macros","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libphf-dc4de28ed399b067.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#infer@0.19.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"infer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\infer-0.19.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","cfb","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libinfer-b5cc9348d155b3b6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#brotli@8.0.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.0.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"brotli","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\brotli-8.0.2\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc-stdlib","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbrotli-1e37a6fd147c7021.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flate2","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\flate2-1.1.9\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["any_impl","miniz_oxide","rust_backend"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libflate2-1b4ab7b5ac9a86cb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\walkdir-2.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"walkdir","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\walkdir-2.5.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwalkdir-efcd40716ff09003.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#urlpattern@0.3.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlpattern-0.3.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"urlpattern","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\urlpattern-0.3.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\liburlpattern-af0d1c61b3594af5.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zopfli-0.8.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zopfli","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zopfli-0.8.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","gzip","std","zlib"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzopfli-71a7fbdc2c27f94f.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml@0.9.12+spec-1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.9.12+spec-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.9.12+spec-1.1.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","display","parse","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml-6a22e391e72e09ff.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zip@2.4.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\zip-74d2d3a872dc5513\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri@2.10.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-2.10.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-2.10.3\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["common-controls-v6","compression","default","dynamic-acl","tauri-runtime-wry","webkit2gtk","webview2-com","wry","x11"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\tauri-fc92ec531f6e0d97\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\tauri-fc92ec531f6e0d97\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde-untagged@0.1.9","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-untagged-0.1.9\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_untagged","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde-untagged-0.1.9\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_untagged-5dd02c82d22fb1f6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#png@0.17.16","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.17.16\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"png","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\png-0.17.16\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libpng-3d432c6eda631fbf.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libpng-3d432c6eda631fbf.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webview2-com@0.38.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-0.38.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webview2_com","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webview2-com-0.38.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwebview2_com-6d6cec0a6c032c58.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml@0.9.12+spec-1.1.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.9.12+spec-1.1.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\toml-0.9.12+spec-1.1.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","display","parse","serde","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtoml-6a22e391e72e09ff.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zopfli@0.8.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zopfli-0.8.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zopfli","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zopfli-0.8.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","gzip","std","zlib"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzopfli-71a7fbdc2c27f94f.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zip@2.4.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\zip-74d2d3a872dc5513\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.53.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_x86_64_msvc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.53.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_x86_64_msvc-2627c42108f1f458.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri@2.10.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-2.10.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-2.10.3\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["common-controls-v6","compression","default","dynamic-acl","tauri-runtime-wry","webkit2gtk","webview2-com","wry","x11"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\tauri-fc92ec531f6e0d97\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\tauri-fc92ec531f6e0d97\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_with@3.18.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with-3.18.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_with","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_with-3.18.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","macros","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_with-5b484b871263ca1a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows_x86_64_msvc@0.52.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_x86_64_msvc","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_x86_64_msvc-2e78ae9ecc66abcc.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.15","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-channel-0.5.15\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_channel","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\crossbeam-channel-0.5.15\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcrossbeam_channel-6f81736ea46681e7.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glob@0.3.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glob-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glob","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glob-0.3.3\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libglob-55752eae7dd30916.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wry@0.54.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.54.4\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.54.4\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["drag-drop","gdkx11","javascriptcore-rs","linux-body","os-webview","protocol","soup3","webkit2gtk","webkit2gtk-sys","x11","x11-dl"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\wry-1c5732f45d6d2dc4\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\wry-1c5732f45d6d2dc4\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime@2.10.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-2.10.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-2.10.1\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\tauri-runtime-dc21f9b685e3b0e7\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\tauri-runtime-dc21f9b685e3b0e7\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#semver@1.0.27","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\semver-1.0.27\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"semver","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\semver-1.0.27\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsemver-9ae268d4410f16eb.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\native-tls-0.2.18\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\native-tls-0.2.18\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\native-tls-4dbb2439dabd0894\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\native-tls-4dbb2439dabd0894\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.53.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.53.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_targets","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.53.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_targets-ffe666aaed9e1f5c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#semver@1.0.27","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\semver-1.0.27\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"semver","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\semver-1.0.27\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsemver-9ae268d4410f16eb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wry@0.54.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.54.4\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.54.4\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["drag-drop","gdkx11","javascriptcore-rs","linux-body","os-webview","protocol","soup3","webkit2gtk","webkit2gtk-sys","x11","x11-dl"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\wry-1c5732f45d6d2dc4\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\wry-1c5732f45d6d2dc4\\build_script_build.pdb"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#glob@0.3.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glob-0.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glob","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\glob-0.3.3\\src\\lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libglob-55752eae7dd30916.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime@2.10.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-2.10.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-2.10.1\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\tauri-runtime-dc21f9b685e3b0e7\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\tauri-runtime-dc21f9b685e3b0e7\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ico@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ico-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ico","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\ico-0.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libico-1c17df63e62b672f.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libico-1c17df63e62b672f.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zip@2.4.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-2.4.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zip","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-2.4.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_deflate-any","deflate","deflate-flate2","deflate-zopfli","flate2","zopfli"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzip-a3644abf4fcdcf42.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri@2.10.3","linked_libs":[],"linked_paths":[],"cfgs":["dev","desktop"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\tauri-d10c705b75755503\\out"} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-hands#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-hands\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_hands","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-hands\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_hands-ef8ddc39154e37d0.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.52.6","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.52.6\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_targets","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.52.6\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_targets-38ea4c82a3dea452.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#wry@0.54.4","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\wry-0abc42964cbc600d\\out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime@2.10.1","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\tauri-runtime-f21ebb8244979367\\out"} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-utils@2.8.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-utils-2.8.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_utils","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-utils-2.8.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["brotli","compression","resources","walkdir"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_utils-3e91def07cf39151.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#wry@0.54.4","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\wry-0abc42964cbc600d\\out"} {"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.18","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\native-tls-de3a0d8fb19ef74c\\out"} -{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-hands#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-hands\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_hands","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-hands\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_hands-ef8ddc39154e37d0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zip@2.4.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-2.4.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zip","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\zip-2.4.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["_deflate-any","deflate","deflate-flate2","deflate-zopfli","flate2","zopfli"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzip-a3644abf4fcdcf42.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-targets@0.53.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.53.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_targets","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-targets-0.53.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_targets-ffe666aaed9e1f5c.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri@2.10.3","linked_libs":[],"linked_paths":[],"cfgs":["dev","desktop"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\tauri-d10c705b75755503\\out"} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-skills#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-skills\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_skills","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-skills\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_skills-40b6d002782b4f08.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin@2.5.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-2.5.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-2.5.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["build"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_plugin-59d874d07f4d165f.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_plugin-59d874d07f4d165f.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-protocols#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-protocols\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_protocols","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-protocols\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["a2a","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_protocols-70f68a7e74f7ca7a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schannel@0.1.29","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schannel-0.1.29\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"schannel","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\schannel-0.1.29\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libschannel-20b825630042e46d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.16.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.16.2\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.16.2\\build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\cookie-4d839691aba55443\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\cookie-4d839691aba55443\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime-wry@2.10.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-wry-2.10.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-wry-2.10.1\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["common-controls-v6","x11"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\tauri-runtime-wry-75e8df657bad3982\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\tauri-runtime-wry-75e8df657bad3982\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.22.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\base64-0.22.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libbase64-796929deec84c6e5.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libbase64-796929deec84c6e5.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-opener@2.5.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.5.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.5.3\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\tauri-plugin-opener-1016ea6790c3ac13\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\tauri-plugin-opener-1016ea6790c3ac13\\build_script_build.pdb"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.16.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\cookie-ecb9c028045bf750\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime-wry@2.10.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-wry-2.10.1\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-wry-2.10.1\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["common-controls-v6","x11"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\tauri-runtime-wry-75e8df657bad3982\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\tauri-runtime-wry-75e8df657bad3982\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.18","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\native-tls-0.2.18\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"native_tls","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\native-tls-0.2.18\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libnative_tls-84c0986e1662350c.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-codegen@2.5.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-codegen-2.5.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_codegen","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-codegen-2.5.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["brotli","compression"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_codegen-92bed2e64404b790.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_codegen-92bed2e64404b790.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wry@0.54.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.54.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wry","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.54.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["drag-drop","gdkx11","javascriptcore-rs","linux-body","os-webview","protocol","soup3","webkit2gtk","webkit2gtk-sys","x11","x11-dl"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwry-99e426b1e9812767.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.59.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.59.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.59.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Foundation","Win32_Graphics","Win32_Graphics_Dwm","Win32_Graphics_Gdi","Win32_System","Win32_System_LibraryLoader","Win32_System_SystemInformation","Win32_UI","Win32_UI_WindowsAndMessaging","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_sys-ed657c784b3bab1d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime@2.10.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-2.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_runtime","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-2.10.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_runtime-f6210dfe506eb52c.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime-wry@2.10.1","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\tauri-runtime-wry-2ab824a47ce68d11\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tao@0.34.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tao-0.34.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tao","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tao-0.34.8\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["rwh_06","x11"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtao-206618d89b78d086.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-opener@2.5.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.5.3\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.5.3\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\tauri-plugin-opener-1016ea6790c3ac13\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\tauri-plugin-opener-1016ea6790c3ac13\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#windows-sys@0.60.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.60.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"windows_sys","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows-sys-0.60.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["Win32","Win32_Foundation","Win32_Globalization","Win32_Graphics","Win32_Graphics_Gdi","Win32_System","Win32_System_LibraryLoader","Win32_System_SystemServices","Win32_UI","Win32_UI_Accessibility","Win32_UI_Controls","Win32_UI_HiDpi","Win32_UI_Input","Win32_UI_Input_KeyboardAndMouse","Win32_UI_Shell","Win32_UI_WindowsAndMessaging","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindows_sys-62788c4fcc39f667.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#keyboard-types@0.7.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\keyboard-types-0.7.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"keyboard_types","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\keyboard-types-0.7.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","unicode-segmentation","webdriver"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libkeyboard_types-fda8cec927969610.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-codegen@2.5.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-codegen-2.5.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_codegen","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-codegen-2.5.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["brotli","compression"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_codegen-92bed2e64404b790.rlib","G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_codegen-92bed2e64404b790.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.16.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\cookie-ecb9c028045bf750\\out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime-wry@2.10.1","linked_libs":[],"linked_paths":[],"cfgs":["desktop"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\tauri-runtime-wry-2ab824a47ce68d11\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime@2.10.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-2.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_runtime","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-2.10.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_runtime-f6210dfe506eb52c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wry@0.54.4","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.54.4\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wry","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\wry-0.54.4\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["drag-drop","gdkx11","javascriptcore-rs","linux-body","os-webview","protocol","soup3","webkit2gtk","webkit2gtk-sys","x11","x11-dl"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwry-99e426b1e9812767.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tao@0.34.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tao-0.34.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tao","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tao-0.34.8\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["rwh_06","x11"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtao-206618d89b78d086.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#softbuffer@0.4.8","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\softbuffer-0.4.8\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"softbuffer","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\softbuffer-0.4.8\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libsoftbuffer-a3b7c3c96f7a5024.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#keyboard-types@0.7.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\keyboard-types-0.7.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"keyboard_types","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\keyboard-types-0.7.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","unicode-segmentation","webdriver"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libkeyboard_types-fda8cec927969610.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serialize-to-javascript-impl@0.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serialize-to-javascript-impl-0.1.2\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serialize_to_javascript_impl","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serialize-to-javascript-impl-0.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\serialize_to_javascript_impl-3ca327ce0b3f9220.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\serialize_to_javascript_impl-3ca327ce0b3f9220.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\serialize_to_javascript_impl-3ca327ce0b3f9220.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\serialize_to_javascript_impl-3ca327ce0b3f9220.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unsafe-libyaml@0.2.11","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unsafe-libyaml-0.2.11\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unsafe_libyaml","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\unsafe-libyaml-0.2.11\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libunsafe_libyaml-d33d2111dc00c258.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#muda@0.17.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\muda-0.17.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"muda","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\muda-0.17.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["common-controls-v6","gtk","serde"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmuda-3685a34084daa763.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serialize-to-javascript@0.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serialize-to-javascript-0.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serialize_to_javascript","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serialize-to-javascript-0.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserialize_to_javascript-d5e616c439f4e2f7.rmeta"],"executable":null,"fresh":true} -{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-opener@2.5.3","linked_libs":[],"linked_paths":[],"cfgs":["desktop","desktop"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\tauri-plugin-opener-9a849506ee962b86\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_yaml@0.9.34+deprecated","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_yaml-0.9.34+deprecated\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_yaml","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_yaml-0.9.34+deprecated\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_yaml-f9fdf682115385ae.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-kernel#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-kernel\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_kernel","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-kernel\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","multi-agent"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_kernel-9a92624c8302c288.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#window-vibrancy@0.6.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\window-vibrancy-0.6.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"window_vibrancy","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\window-vibrancy-0.6.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwindow_vibrancy-161138de143fba58.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-native-tls-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_native_tls","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-native-tls-0.3.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio_native_tls-04bc1041020fc375.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.16.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.16.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cookie","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.16.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcookie-55a273e4293aa077.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-macros@2.5.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-macros-2.5.5\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tauri_macros","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-macros-2.5.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compression"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\tauri_macros-f1f58414df629ead.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\tauri_macros-f1f58414df629ead.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\tauri_macros-f1f58414df629ead.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\tauri_macros-f1f58414df629ead.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-runtime-wry@2.10.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-wry-2.10.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_runtime_wry","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-runtime-wry-2.10.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["common-controls-v6","x11"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_runtime_wry-48c3a6e6435f9aae.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cookie@0.16.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.16.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cookie","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\cookie-0.16.2\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libcookie-55a273e4293aa077.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-opener@2.5.3","linked_libs":[],"linked_paths":[],"cfgs":["desktop","desktop"],"env":[],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\tauri-plugin-opener-9a849506ee962b86\\out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#muda@0.17.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\muda-0.17.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"muda","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\muda-0.17.1\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["common-controls-v6","gtk","serde"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmuda-3685a34084daa763.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_yaml@0.9.34+deprecated","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_yaml-0.9.34+deprecated\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_yaml","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_yaml-0.9.34+deprecated\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserde_yaml-f9fdf682115385ae.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serialize-to-javascript@0.1.2","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serialize-to-javascript-0.1.2\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serialize_to_javascript","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serialize-to-javascript-0.1.2\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libserialize_to_javascript-d5e616c439f4e2f7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-native-tls-0.3.1\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_native_tls","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-native-tls-0.3.1\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio_native_tls-04bc1041020fc375.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http@0.2.12","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-0.2.12\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\http-0.2.12\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhttp-131a5e4f1d1a9e5d.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_repr-0.1.20\\Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_repr","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\serde_repr-0.1.20\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\serde_repr-90aeac757ce98ae1.dll","G:\\ZClaw_openfang\\target\\debug\\deps\\serde_repr-90aeac757ce98ae1.dll.lib","G:\\ZClaw_openfang\\target\\debug\\deps\\serde_repr-90aeac757ce98ae1.dll.exp","G:\\ZClaw_openfang\\target\\debug\\deps\\serde_repr-90aeac757ce98ae1.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-0.5.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"heck","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\heck-0.5.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libheck-06c68dd48eaa104a.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\build\\desktop-2b80f14253db61fc\\build-script-build.exe","G:\\ZClaw_openfang\\target\\debug\\build\\desktop-2b80f14253db61fc\\build_script_build.pdb"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#open@5.3.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\open-5.3.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"open","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\open-5.3.3\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["shellexecute-on-windows"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libopen-3a77b2325e1afe53.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#keyring@3.6.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\keyring-3.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"keyring","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\keyring-3.6.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libkeyring-ee2033caed659164.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#webdriver@0.50.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webdriver-0.50.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webdriver","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\webdriver-0.50.0\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libwebdriver-e5ba03ca07ac00ba.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-tls-0.6.0\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_tls","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\hyper-tls-0.6.0\\src\\lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libhyper_tls-b7df9a0866952211.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri@2.10.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-2.10.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-2.10.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["common-controls-v6","compression","default","dynamic-acl","tauri-runtime-wry","webkit2gtk","webview2-com","wry","x11"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri-39dc1c7540ecc17d.rmeta"],"executable":null,"fresh":true} {"reason":"build-script-executed","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","linked_libs":[],"linked_paths":[],"cfgs":["desktop","dev"],"env":[["TARGET","x86_64-pc-windows-msvc"],["TAURI_ANDROID_PACKAGE_NAME_APP_NAME","desktop"],["TAURI_ANDROID_PACKAGE_NAME_PREFIX","com_zclaw"],["TAURI_ENV_TARGET_TRIPLE","x86_64-pc-windows-msvc"]],"out_dir":"G:\\ZClaw_openfang\\target\\debug\\build\\desktop-da77433f8636ef6a\\out"} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#keyring@3.6.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\keyring-3.6.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"keyring","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\keyring-3.6.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libkeyring-ee2033caed659164.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-pipeline#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_pipeline","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_pipeline-10ed1f5161482e46.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-test@0.4.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-test-0.4.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_test","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tokio-test-0.4.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtokio_test-b7083270732212b9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-kernel#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-kernel\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_kernel","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-kernel\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":["default","multi-agent"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_kernel-8cc9255e3ccc0c21.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-hands#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-hands\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_hands","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-hands\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_hands-8d8cac6ea23afbfd.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-runtime#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-runtime\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_runtime","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-runtime\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_runtime-95f4dd47cec91273.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-skills#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-skills\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_skills","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-skills\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_skills-eeb07a58d02b840d.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-protocols#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-protocols\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_protocols","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-protocols\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":["a2a","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_protocols-27940e41a4209177.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-channels#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-channels\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_channels","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-channels\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_channels-d6d89fd7049c3f80.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-protocols#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-protocols\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_protocols","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-protocols\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":["a2a","default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_protocols-27940e41a4209177.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-channels#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-channels\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_channels","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-channels\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_channels-77cdc4cafdad1836.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-opener@2.5.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.5.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_opener","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.5.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_plugin_opener-9a07633fca89a5ee.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fantoccini@0.21.5","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fantoccini-0.21.5\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fantoccini","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\fantoccini-0.21.5\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","hyper-tls","native-tls","openssl"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libfantoccini-06544dbb66ddda76.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tauri-plugin-opener@2.5.3","manifest_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.5.3\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tauri_plugin_opener","src_path":"C:\\Users\\szend\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\tauri-plugin-opener-2.5.3\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtauri_plugin_opener-9a07633fca89a5ee.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-growth#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-growth\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"integration_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-growth\\tests\\integration_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libintegration_test-6b08c2755a33592c.rmeta"],"executable":null,"fresh":true} {"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-growth#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-growth\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_growth","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-growth\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"type `MemoryRow` is more private than the item `storage::sqlite::SqliteStorage::fetch_by_scope_priv`","code":{"code":"private_interfaces","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-growth\\src\\storage\\sqlite.rs","byte_start":10419,"byte_end":10526,"line_start":296,"line_end":296,"column_start":5,"column_end":112,"is_primary":true,"text":[{"text":" pub(crate) async fn fetch_by_scope_priv(&self, scope: Option<&str>, limit: usize) -> Result> {","highlight_start":5,"highlight_end":112}],"label":"method `storage::sqlite::SqliteStorage::fetch_by_scope_priv` is reachable at visibility `pub(crate)`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"but type `MemoryRow` is only usable at visibility `pub(self)`","code":null,"level":"note","spans":[{"file_name":"crates\\zclaw-growth\\src\\storage\\sqlite.rs","byte_start":907,"byte_end":923,"line_start":30,"line_end":30,"column_start":1,"column_end":17,"is_primary":true,"text":[{"text":"struct MemoryRow {","highlight_start":1,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"`#[warn(private_interfaces)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: type `MemoryRow` is more private than the item `storage::sqlite::SqliteStorage::fetch_by_scope_priv`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-growth\\src\\storage\\sqlite.rs:296:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m296\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub(crate) async fn fetch_by_scope_priv(&self, scope: Option<&str>, limit: usize) -> Result> {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[93mmethod `storage::sqlite::SqliteStorage::fetch_by_scope_priv` is reachable at visibility `pub(crate)`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but type `MemoryRow` is only usable at visibility `pub(self)`\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-growth\\src\\storage\\sqlite.rs:30:1\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m30\u001b[0m \u001b[1m\u001b[96m|\u001b[0m struct MemoryRow {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(private_interfaces)]` on by default\n\n"}} {"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-growth#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-growth\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_growth","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-growth\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_growth-0670e834867cddd4.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-types#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-types\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_types","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-types\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_types-d065612f3ccb3d07.rmeta"],"executable":null,"fresh":true} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"expected `;`, found `handlers`","code":null,"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":834,"byte_end":842,"line_start":20,"line_end":20,"column_start":5,"column_end":13,"is_primary":false,"text":[{"text":" handlers","highlight_start":5,"highlight_end":13}],"label":"unexpected token","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":829,"byte_end":829,"line_start":19,"line_end":19,"column_start":85,"column_end":85,"is_primary":true,"text":[{"text":" .route(\"/api/v1/roles/:id/permissions\", get(handlers::get_role_permissions))","highlight_start":85,"highlight_end":85}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"add `;` here","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":829,"byte_end":829,"line_start":19,"line_end":19,"column_start":85,"column_end":85,"is_primary":true,"text":[{"text":" .route(\"/api/v1/roles/:id/permissions\", get(handlers::get_role_permissions))","highlight_start":85,"highlight_end":85}],"label":null,"suggested_replacement":";","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror\u001b[0m\u001b[1m\u001b[97m: expected `;`, found `handlers`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:19:85\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m19\u001b[0m \u001b[1m\u001b[96m|\u001b[0m .route(\"/api/v1/roles/:id/permissions\", get(handlers::get_role_permissions))\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^\u001b[0m \u001b[1m\u001b[91mhelp: add `;` here\u001b[0m\n\u001b[1m\u001b[96m20\u001b[0m \u001b[1m\u001b[96m|\u001b[0m handlers\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m--------\u001b[0m \u001b[1m\u001b[96munexpected token\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"expected `;`, found `handlers`","code":null,"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":834,"byte_end":842,"line_start":20,"line_end":20,"column_start":5,"column_end":13,"is_primary":false,"text":[{"text":" handlers","highlight_start":5,"highlight_end":13}],"label":"unexpected token","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":829,"byte_end":829,"line_start":19,"line_end":19,"column_start":85,"column_end":85,"is_primary":true,"text":[{"text":" .route(\"/api/v1/roles/:id/permissions\", get(handlers::get_role_permissions))","highlight_start":85,"highlight_end":85}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"add `;` here","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":829,"byte_end":829,"line_start":19,"line_end":19,"column_start":85,"column_end":85,"is_primary":true,"text":[{"text":" .route(\"/api/v1/roles/:id/permissions\", get(handlers::get_role_permissions))","highlight_start":85,"highlight_end":85}],"label":null,"suggested_replacement":";","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror\u001b[0m\u001b[1m\u001b[97m: expected `;`, found `handlers`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:19:85\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m19\u001b[0m \u001b[1m\u001b[96m|\u001b[0m .route(\"/api/v1/roles/:id/permissions\", get(handlers::get_role_permissions))\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^\u001b[0m \u001b[1m\u001b[91mhelp: add `;` here\u001b[0m\n\u001b[1m\u001b[96m20\u001b[0m \u001b[1m\u001b[96m|\u001b[0m handlers\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m--------\u001b[0m \u001b[1m\u001b[96munexpected token\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"the name `routes` is defined multiple times","code":{"code":"E0428","explanation":"A type or module has been defined more than once.\n\nErroneous code example:\n\n```compile_fail,E0428\nstruct Bar;\nstruct Bar; // error: duplicate definition of value `Bar`\n```\n\nPlease verify you didn't misspell the type/module's name or remove/rename the\nduplicated one. Example:\n\n```\nstruct Bar;\nstruct Bar2; // ok!\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":905,"byte_end":946,"line_start":24,"line_end":24,"column_start":1,"column_end":42,"is_primary":true,"text":[{"text":"pub fn routes() -> axum::Router {","highlight_start":1,"highlight_end":42}],"label":"`routes` redefined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":159,"byte_end":200,"line_start":12,"line_end":12,"column_start":1,"column_end":42,"is_primary":false,"text":[{"text":"pub fn routes() -> axum::Router {","highlight_start":1,"highlight_end":42}],"label":"previous definition of the value `routes` here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`routes` must be defined only once in the value namespace of this module","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0428]\u001b[0m\u001b[1m\u001b[97m: the name `routes` is defined multiple times\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:24:1\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m12\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn routes() -> axum::Router {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m-----------------------------------------\u001b[0m \u001b[1m\u001b[96mprevious definition of the value `routes` here\u001b[0m\n\u001b[1m\u001b[96m...\u001b[0m\n\u001b[1m\u001b[96m24\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn routes() -> axum::Router {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91m`routes` redefined here\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `routes` must be defined only once in the value namespace of this module\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"the name `routes` is defined multiple times","code":{"code":"E0428","explanation":"A type or module has been defined more than once.\n\nErroneous code example:\n\n```compile_fail,E0428\nstruct Bar;\nstruct Bar; // error: duplicate definition of value `Bar`\n```\n\nPlease verify you didn't misspell the type/module's name or remove/rename the\nduplicated one. Example:\n\n```\nstruct Bar;\nstruct Bar2; // ok!\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":905,"byte_end":946,"line_start":24,"line_end":24,"column_start":1,"column_end":42,"is_primary":true,"text":[{"text":"pub fn routes() -> axum::Router {","highlight_start":1,"highlight_end":42}],"label":"`routes` redefined here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":159,"byte_end":200,"line_start":12,"line_end":12,"column_start":1,"column_end":42,"is_primary":false,"text":[{"text":"pub fn routes() -> axum::Router {","highlight_start":1,"highlight_end":42}],"label":"previous definition of the value `routes` here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`routes` must be defined only once in the value namespace of this module","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0428]\u001b[0m\u001b[1m\u001b[97m: the name `routes` is defined multiple times\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:24:1\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m12\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn routes() -> axum::Router {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m-----------------------------------------\u001b[0m \u001b[1m\u001b[96mprevious definition of the value `routes` here\u001b[0m\n\u001b[1m\u001b[96m...\u001b[0m\n\u001b[1m\u001b[96m24\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn routes() -> axum::Router {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91m`routes` redefined here\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `routes` must be defined only once in the value namespace of this module\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"the name `get` is defined multiple times","code":{"code":"E0252","explanation":"Two items of the same name cannot be imported without rebinding one of the\nitems under a new local name.\n\nErroneous code example:\n\n```compile_fail,E0252\nuse foo::baz;\nuse bar::baz; // error, do `use bar::baz as quux` instead\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nYou can use aliases in order to fix this error. Example:\n\n```\nuse foo::baz as foo_baz;\nuse bar::baz; // ok!\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nOr you can reference the item with its parent:\n\n```\nuse bar::baz;\n\nfn main() {\n let x = foo::baz; // ok!\n}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":864,"byte_end":867,"line_start":21,"line_end":21,"column_start":22,"column_end":25,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":22,"highlight_end":25}],"label":"`get` reimported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":118,"byte_end":121,"line_start":9,"line_end":9,"column_start":21,"column_end":24,"is_primary":false,"text":[{"text":"use axum::routing::{get, post};","highlight_start":21,"highlight_end":24}],"label":"previous import of the value `get` here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`get` must be defined only once in the value namespace of this module","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove unnecessary import","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":864,"byte_end":869,"line_start":21,"line_end":21,"column_start":22,"column_end":27,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":22,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0252]\u001b[0m\u001b[1m\u001b[97m: the name `get` is defined multiple times\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:21:22\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m9\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use axum::routing::{get, post};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m---\u001b[0m \u001b[1m\u001b[96mprevious import of the value `get` here\u001b[0m\n\u001b[1m\u001b[96m...\u001b[0m\n\u001b[1m\u001b[96m21\u001b[0m \u001b[1m\u001b[96m|\u001b[0m }use axum::routing::{get, post};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^\u001b[0m\u001b[1m\u001b[96m--\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m`get` reimported here\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96mhelp: remove unnecessary import\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `get` must be defined only once in the value namespace of this module\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"the name `get` is defined multiple times","code":{"code":"E0252","explanation":"Two items of the same name cannot be imported without rebinding one of the\nitems under a new local name.\n\nErroneous code example:\n\n```compile_fail,E0252\nuse foo::baz;\nuse bar::baz; // error, do `use bar::baz as quux` instead\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nYou can use aliases in order to fix this error. Example:\n\n```\nuse foo::baz as foo_baz;\nuse bar::baz; // ok!\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nOr you can reference the item with its parent:\n\n```\nuse bar::baz;\n\nfn main() {\n let x = foo::baz; // ok!\n}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":864,"byte_end":867,"line_start":21,"line_end":21,"column_start":22,"column_end":25,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":22,"highlight_end":25}],"label":"`get` reimported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":118,"byte_end":121,"line_start":9,"line_end":9,"column_start":21,"column_end":24,"is_primary":false,"text":[{"text":"use axum::routing::{get, post};","highlight_start":21,"highlight_end":24}],"label":"previous import of the value `get` here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`get` must be defined only once in the value namespace of this module","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove unnecessary import","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":864,"byte_end":869,"line_start":21,"line_end":21,"column_start":22,"column_end":27,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":22,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0252]\u001b[0m\u001b[1m\u001b[97m: the name `get` is defined multiple times\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:21:22\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m9\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use axum::routing::{get, post};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m---\u001b[0m \u001b[1m\u001b[96mprevious import of the value `get` here\u001b[0m\n\u001b[1m\u001b[96m...\u001b[0m\n\u001b[1m\u001b[96m21\u001b[0m \u001b[1m\u001b[96m|\u001b[0m }use axum::routing::{get, post};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^\u001b[0m\u001b[1m\u001b[96m--\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m`get` reimported here\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96mhelp: remove unnecessary import\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `get` must be defined only once in the value namespace of this module\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"the name `post` is defined multiple times","code":{"code":"E0252","explanation":"Two items of the same name cannot be imported without rebinding one of the\nitems under a new local name.\n\nErroneous code example:\n\n```compile_fail,E0252\nuse foo::baz;\nuse bar::baz; // error, do `use bar::baz as quux` instead\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nYou can use aliases in order to fix this error. Example:\n\n```\nuse foo::baz as foo_baz;\nuse bar::baz; // ok!\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nOr you can reference the item with its parent:\n\n```\nuse bar::baz;\n\nfn main() {\n let x = foo::baz; // ok!\n}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":869,"byte_end":873,"line_start":21,"line_end":21,"column_start":27,"column_end":31,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":27,"highlight_end":31}],"label":"`post` reimported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":123,"byte_end":127,"line_start":9,"line_end":9,"column_start":26,"column_end":30,"is_primary":false,"text":[{"text":"use axum::routing::{get, post};","highlight_start":26,"highlight_end":30}],"label":"previous import of the value `post` here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`post` must be defined only once in the value namespace of this module","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove unnecessary import","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":867,"byte_end":873,"line_start":21,"line_end":21,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0252]\u001b[0m\u001b[1m\u001b[97m: the name `post` is defined multiple times\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:21:27\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m9\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use axum::routing::{get, post};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m----\u001b[0m \u001b[1m\u001b[96mprevious import of the value `post` here\u001b[0m\n\u001b[1m\u001b[96m...\u001b[0m\n\u001b[1m\u001b[96m21\u001b[0m \u001b[1m\u001b[96m|\u001b[0m }use axum::routing::{get, post};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^\u001b[0m \u001b[1m\u001b[91m`post` reimported here\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `post` must be defined only once in the value namespace of this module\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"the name `post` is defined multiple times","code":{"code":"E0252","explanation":"Two items of the same name cannot be imported without rebinding one of the\nitems under a new local name.\n\nErroneous code example:\n\n```compile_fail,E0252\nuse foo::baz;\nuse bar::baz; // error, do `use bar::baz as quux` instead\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nYou can use aliases in order to fix this error. Example:\n\n```\nuse foo::baz as foo_baz;\nuse bar::baz; // ok!\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nOr you can reference the item with its parent:\n\n```\nuse bar::baz;\n\nfn main() {\n let x = foo::baz; // ok!\n}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":869,"byte_end":873,"line_start":21,"line_end":21,"column_start":27,"column_end":31,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":27,"highlight_end":31}],"label":"`post` reimported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":123,"byte_end":127,"line_start":9,"line_end":9,"column_start":26,"column_end":30,"is_primary":false,"text":[{"text":"use axum::routing::{get, post};","highlight_start":26,"highlight_end":30}],"label":"previous import of the value `post` here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`post` must be defined only once in the value namespace of this module","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove unnecessary import","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":867,"byte_end":873,"line_start":21,"line_end":21,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0252]\u001b[0m\u001b[1m\u001b[97m: the name `post` is defined multiple times\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:21:27\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m9\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use axum::routing::{get, post};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m----\u001b[0m \u001b[1m\u001b[96mprevious import of the value `post` here\u001b[0m\n\u001b[1m\u001b[96m...\u001b[0m\n\u001b[1m\u001b[96m21\u001b[0m \u001b[1m\u001b[96m|\u001b[0m }use axum::routing::{get, post};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^\u001b[0m \u001b[1m\u001b[91m`post` reimported here\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `post` must be defined only once in the value namespace of this module\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"the name `AppState` is defined multiple times","code":{"code":"E0252","explanation":"Two items of the same name cannot be imported without rebinding one of the\nitems under a new local name.\n\nErroneous code example:\n\n```compile_fail,E0252\nuse foo::baz;\nuse bar::baz; // error, do `use bar::baz as quux` instead\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nYou can use aliases in order to fix this error. Example:\n\n```\nuse foo::baz as foo_baz;\nuse bar::baz; // ok!\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nOr you can reference the item with its parent:\n\n```\nuse bar::baz;\n\nfn main() {\n let x = foo::baz; // ok!\n}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":880,"byte_end":902,"line_start":22,"line_end":22,"column_start":5,"column_end":27,"is_primary":true,"text":[{"text":"use crate::state::AppState;","highlight_start":5,"highlight_end":27}],"label":"`AppState` reimported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":134,"byte_end":156,"line_start":10,"line_end":10,"column_start":5,"column_end":27,"is_primary":false,"text":[{"text":"use crate::state::AppState;","highlight_start":5,"highlight_end":27}],"label":"previous import of the type `AppState` here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`AppState` must be defined only once in the type namespace of this module","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove unnecessary import","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":876,"byte_end":904,"line_start":22,"line_end":23,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::state::AppState;","highlight_start":1,"highlight_end":28},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0252]\u001b[0m\u001b[1m\u001b[97m: the name `AppState` is defined multiple times\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:22:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m10\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use crate::state::AppState;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m----------------------\u001b[0m \u001b[1m\u001b[96mprevious import of the type `AppState` here\u001b[0m\n\u001b[1m\u001b[96m...\u001b[0m\n\u001b[1m\u001b[96m22\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use crate::state::AppState;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91m`AppState` reimported here\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `AppState` must be defined only once in the type namespace of this module\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"the name `AppState` is defined multiple times","code":{"code":"E0252","explanation":"Two items of the same name cannot be imported without rebinding one of the\nitems under a new local name.\n\nErroneous code example:\n\n```compile_fail,E0252\nuse foo::baz;\nuse bar::baz; // error, do `use bar::baz as quux` instead\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nYou can use aliases in order to fix this error. Example:\n\n```\nuse foo::baz as foo_baz;\nuse bar::baz; // ok!\n\nfn main() {}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n\nOr you can reference the item with its parent:\n\n```\nuse bar::baz;\n\nfn main() {\n let x = foo::baz; // ok!\n}\n\nmod foo {\n pub struct baz;\n}\n\nmod bar {\n pub mod baz {}\n}\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":880,"byte_end":902,"line_start":22,"line_end":22,"column_start":5,"column_end":27,"is_primary":true,"text":[{"text":"use crate::state::AppState;","highlight_start":5,"highlight_end":27}],"label":"`AppState` reimported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":134,"byte_end":156,"line_start":10,"line_end":10,"column_start":5,"column_end":27,"is_primary":false,"text":[{"text":"use crate::state::AppState;","highlight_start":5,"highlight_end":27}],"label":"previous import of the type `AppState` here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`AppState` must be defined only once in the type namespace of this module","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove unnecessary import","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":876,"byte_end":904,"line_start":22,"line_end":23,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::state::AppState;","highlight_start":1,"highlight_end":28},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0252]\u001b[0m\u001b[1m\u001b[97m: the name `AppState` is defined multiple times\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:22:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m10\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use crate::state::AppState;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m----------------------\u001b[0m \u001b[1m\u001b[96mprevious import of the type `AppState` here\u001b[0m\n\u001b[1m\u001b[96m...\u001b[0m\n\u001b[1m\u001b[96m22\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use crate::state::AppState;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91m`AppState` reimported here\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `AppState` must be defined only once in the type namespace of this module\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-memory#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-memory\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_memory","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-memory\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"missing fields `compaction_threshold` and `workspace` in initializer of `AgentConfig`","code":{"code":"E0063","explanation":"A struct's or struct-like enum variant's field was not provided.\n\nErroneous code example:\n\n```compile_fail,E0063\nstruct Foo {\n x: i32,\n y: i32,\n}\n\nfn main() {\n let x = Foo { x: 0 }; // error: missing field: `y`\n}\n```\n\nEach field should be specified exactly once. Example:\n\n```\nstruct Foo {\n x: i32,\n y: i32,\n}\n\nfn main() {\n let x = Foo { x: 0, y: 0 }; // ok!\n}\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-memory\\src\\store.rs","byte_start":16466,"byte_end":16477,"line_start":481,"line_end":481,"column_start":9,"column_end":20,"is_primary":true,"text":[{"text":" AgentConfig {","highlight_start":9,"highlight_end":20}],"label":"missing `compaction_threshold` and `workspace`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[91merror[E0063]\u001b[0m\u001b[1m\u001b[97m: missing fields `compaction_threshold` and `workspace` in initializer of `AgentConfig`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-memory\\src\\store.rs:481:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m481\u001b[0m \u001b[1m\u001b[96m|\u001b[0m AgentConfig {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mmissing `compaction_threshold` and `workspace`\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"cannot find value `permissions_str` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":902,"byte_end":917,"line_start":32,"line_end":32,"column_start":58,"column_end":73,"is_primary":true,"text":[{"text":" let permissions: Vec = serde_json::from_str(&permissions_str)?;","highlight_start":58,"highlight_end":73}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[91merror[E0425]\u001b[0m\u001b[1m\u001b[97m: cannot find value `permissions_str` in this scope\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:32:58\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m32\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let permissions: Vec = serde_json::from_str(&permissions_str)?;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mnot found in this scope\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"cannot find value `permissions_str` in this scope","code":{"code":"E0425","explanation":"An unresolved name was used.\n\nErroneous code examples:\n\n```compile_fail,E0425\nsomething_that_doesnt_exist::foo;\n// error: unresolved name `something_that_doesnt_exist::foo`\n\n// or:\n\ntrait Foo {\n fn bar() {\n Self; // error: unresolved name `Self`\n }\n}\n\n// or:\n\nlet x = unknown_variable; // error: unresolved name `unknown_variable`\n```\n\nPlease verify that the name wasn't misspelled and ensure that the\nidentifier being referred to is valid for the given situation. Example:\n\n```\nenum something_that_does_exist {\n Foo,\n}\n```\n\nOr:\n\n```\nmod something_that_does_exist {\n pub static foo : i32 = 0i32;\n}\n\nsomething_that_does_exist::foo; // ok!\n```\n\nOr:\n\n```\nlet unknown_variable = 12u32;\nlet x = unknown_variable; // ok!\n```\n\nIf the item is not defined in the current module, it must be imported using a\n`use` statement, like so:\n\n```\n# mod foo { pub fn bar() {} }\n# fn main() {\nuse foo::bar;\nbar();\n# }\n```\n\nIf the item you are importing is not defined in some super-module of the\ncurrent module, then it must also be declared as public (e.g., `pub fn`).\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":902,"byte_end":917,"line_start":32,"line_end":32,"column_start":58,"column_end":73,"is_primary":true,"text":[{"text":" let permissions: Vec = serde_json::from_str(&permissions_str)?;","highlight_start":58,"highlight_end":73}],"label":"not found in this scope","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[91merror[E0425]\u001b[0m\u001b[1m\u001b[97m: cannot find value `permissions_str` in this scope\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:32:58\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m32\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let permissions: Vec = serde_json::from_str(&permissions_str)?;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mnot found in this scope\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"expected value, found module `handlers`","code":{"code":"E0423","explanation":"An identifier was used like a function name or a value was expected and the\nidentifier exists but it belongs to a different namespace.\n\nErroneous code example:\n\n```compile_fail,E0423\nstruct Foo { a: bool };\n\nlet f = Foo();\n// error: expected function, tuple struct or tuple variant, found `Foo`\n// `Foo` is a struct name, but this expression uses it like a function name\n```\n\nPlease verify you didn't misspell the name of what you actually wanted to use\nhere. Example:\n\n```\nfn Foo() -> u32 { 0 }\n\nlet f = Foo(); // ok!\n```\n\nIt is common to forget the trailing `!` on macro invocations, which would also\nyield this error:\n\n```compile_fail,E0423\nprintln(\"\");\n// error: expected function, tuple struct or tuple variant,\n// found macro `println`\n// did you mean `println!(...)`? (notice the trailing `!`)\n```\n\nAnother case where this error is emitted is when a value is expected, but\nsomething else is found:\n\n```compile_fail,E0423\npub mod a {\n pub const I: i32 = 1;\n}\n\nfn h1() -> i32 {\n a.I\n //~^ ERROR expected value, found module `a`\n // did you mean `a::I`?\n}\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":834,"byte_end":842,"line_start":20,"line_end":20,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" handlers","highlight_start":5,"highlight_end":13}],"label":"not a value","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[91merror[E0423]\u001b[0m\u001b[1m\u001b[97m: expected value, found module `handlers`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:20:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m20\u001b[0m \u001b[1m\u001b[96m|\u001b[0m handlers\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^\u001b[0m \u001b[1m\u001b[91mnot a value\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"expected value, found module `handlers`","code":{"code":"E0423","explanation":"An identifier was used like a function name or a value was expected and the\nidentifier exists but it belongs to a different namespace.\n\nErroneous code example:\n\n```compile_fail,E0423\nstruct Foo { a: bool };\n\nlet f = Foo();\n// error: expected function, tuple struct or tuple variant, found `Foo`\n// `Foo` is a struct name, but this expression uses it like a function name\n```\n\nPlease verify you didn't misspell the name of what you actually wanted to use\nhere. Example:\n\n```\nfn Foo() -> u32 { 0 }\n\nlet f = Foo(); // ok!\n```\n\nIt is common to forget the trailing `!` on macro invocations, which would also\nyield this error:\n\n```compile_fail,E0423\nprintln(\"\");\n// error: expected function, tuple struct or tuple variant,\n// found macro `println`\n// did you mean `println!(...)`? (notice the trailing `!`)\n```\n\nAnother case where this error is emitted is when a value is expected, but\nsomething else is found:\n\n```compile_fail,E0423\npub mod a {\n pub const I: i32 = 1;\n}\n\nfn h1() -> i32 {\n a.I\n //~^ ERROR expected value, found module `a`\n // did you mean `a::I`?\n}\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":834,"byte_end":842,"line_start":20,"line_end":20,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" handlers","highlight_start":5,"highlight_end":13}],"label":"not a value","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[91merror[E0423]\u001b[0m\u001b[1m\u001b[97m: expected value, found module `handlers`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:20:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m20\u001b[0m \u001b[1m\u001b[96m|\u001b[0m handlers\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^\u001b[0m \u001b[1m\u001b[91mnot a value\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `http::StatusCode`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":139,"byte_end":155,"line_start":6,"line_end":6,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":" http::StatusCode,","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":133,"byte_end":155,"line_start":5,"line_end":6,"column_start":38,"column_end":21,"is_primary":true,"text":[{"text":" extract::{Extension, Path, State},","highlight_start":38,"highlight_end":39},{"text":" http::StatusCode,","highlight_start":1,"highlight_end":21}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `http::StatusCode`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:6:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m6\u001b[0m \u001b[1m\u001b[96m|\u001b[0m http::StatusCode,\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `http::StatusCode`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":139,"byte_end":155,"line_start":6,"line_end":6,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":" http::StatusCode,","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":133,"byte_end":155,"line_start":5,"line_end":6,"column_start":38,"column_end":21,"is_primary":true,"text":[{"text":" extract::{Extension, Path, State},","highlight_start":38,"highlight_end":39},{"text":" http::StatusCode,","highlight_start":1,"highlight_end":21}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `http::StatusCode`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:6:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m6\u001b[0m \u001b[1m\u001b[96m|\u001b[0m http::StatusCode,\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused imports: `service` and `types::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":322,"byte_end":330,"line_start":13,"line_end":13,"column_start":13,"column_end":21,"is_primary":true,"text":[{"text":"use super::{types::*, service};","highlight_start":13,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":332,"byte_end":339,"line_start":13,"line_end":13,"column_start":23,"column_end":30,"is_primary":true,"text":[{"text":"use super::{types::*, service};","highlight_start":23,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":310,"byte_end":342,"line_start":13,"line_end":14,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use super::{types::*, service};","highlight_start":1,"highlight_end":32},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused imports: `service` and `types::*`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:13:13\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m13\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use super::{types::*, service};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^\u001b[0m \u001b[1m\u001b[93m^^^^^^^\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused imports: `service` and `types::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":322,"byte_end":330,"line_start":13,"line_end":13,"column_start":13,"column_end":21,"is_primary":true,"text":[{"text":"use super::{types::*, service};","highlight_start":13,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":332,"byte_end":339,"line_start":13,"line_end":13,"column_start":23,"column_end":30,"is_primary":true,"text":[{"text":"use super::{types::*, service};","highlight_start":23,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":310,"byte_end":342,"line_start":13,"line_end":14,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use super::{types::*, service};","highlight_start":1,"highlight_end":32},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused imports: `service` and `types::*`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:13:13\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m13\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use super::{types::*, service};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^\u001b[0m \u001b[1m\u001b[93m^^^^^^^\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `crate::role::handlers_ext`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":347,"byte_end":372,"line_start":15,"line_end":15,"column_start":5,"column_end":30,"is_primary":true,"text":[{"text":"use crate::role::handlers_ext;","highlight_start":5,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":343,"byte_end":374,"line_start":15,"line_end":16,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::role::handlers_ext;","highlight_start":1,"highlight_end":31},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `crate::role::handlers_ext`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:15:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m15\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use crate::role::handlers_ext;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused imports: `get` and `post`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":864,"byte_end":867,"line_start":21,"line_end":21,"column_start":22,"column_end":25,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":22,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":869,"byte_end":873,"line_start":21,"line_end":21,"column_start":27,"column_end":31,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":27,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":844,"byte_end":875,"line_start":21,"line_end":21,"column_start":2,"column_end":33,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":2,"highlight_end":33}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused imports: `get` and `post`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:21:22\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m21\u001b[0m \u001b[1m\u001b[96m|\u001b[0m }use axum::routing::{get, post};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^\u001b[0m \u001b[1m\u001b[93m^^^^\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `crate::role::handlers_ext`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":347,"byte_end":372,"line_start":15,"line_end":15,"column_start":5,"column_end":30,"is_primary":true,"text":[{"text":"use crate::role::handlers_ext;","highlight_start":5,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":343,"byte_end":374,"line_start":15,"line_end":16,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::role::handlers_ext;","highlight_start":1,"highlight_end":31},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `crate::role::handlers_ext`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:15:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m15\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use crate::role::handlers_ext;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `crate::state::AppState`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":880,"byte_end":902,"line_start":22,"line_end":22,"column_start":5,"column_end":27,"is_primary":true,"text":[{"text":"use crate::state::AppState;","highlight_start":5,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":876,"byte_end":904,"line_start":22,"line_end":23,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::state::AppState;","highlight_start":1,"highlight_end":28},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `crate::state::AppState`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:22:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m22\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use crate::state::AppState;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused imports: `get` and `post`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":864,"byte_end":867,"line_start":21,"line_end":21,"column_start":22,"column_end":25,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":22,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":869,"byte_end":873,"line_start":21,"line_end":21,"column_start":27,"column_end":31,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":27,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":844,"byte_end":875,"line_start":21,"line_end":21,"column_start":2,"column_end":33,"is_primary":true,"text":[{"text":"}use axum::routing::{get, post};","highlight_start":2,"highlight_end":33}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused imports: `get` and `post`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:21:22\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m21\u001b[0m \u001b[1m\u001b[96m|\u001b[0m }use axum::routing::{get, post};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^\u001b[0m \u001b[1m\u001b[93m^^^^\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `crate::state::AppState`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":880,"byte_end":902,"line_start":22,"line_end":22,"column_start":5,"column_end":27,"is_primary":true,"text":[{"text":"use crate::state::AppState;","highlight_start":5,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\mod.rs","byte_start":876,"byte_end":904,"line_start":22,"line_end":23,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::state::AppState;","highlight_start":1,"highlight_end":28},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `crate::state::AppState`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\mod.rs:22:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m22\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use crate::state::AppState;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-memory#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-memory\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_memory","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-memory\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0063`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1m\u001b[97mFor more information about this error, try `rustc --explain E0063`.\u001b[0m\n"}} -{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-kernel#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-kernel\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_kernel","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-kernel\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","multi-agent"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_kernel-9a92624c8302c288.rmeta"],"executable":null,"fresh":false} -{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-kernel#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-kernel\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_kernel","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-kernel\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":["default","multi-agent"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_kernel-8cc9255e3ccc0c21.rmeta"],"executable":null,"fresh":false} {"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-pipeline#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_pipeline","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `compile_pattern`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-pipeline\\src\\intent.rs","byte_start":18653,"byte_end":18668,"line_start":638,"line_end":638,"column_start":26,"column_end":41,"is_primary":true,"text":[{"text":" use crate::trigger::{compile_pattern, compile_trigger, Trigger};","highlight_start":26,"highlight_end":41}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-pipeline\\src\\intent.rs","byte_start":18653,"byte_end":18670,"line_start":638,"line_end":638,"column_start":26,"column_end":43,"is_primary":true,"text":[{"text":" use crate::trigger::{compile_pattern, compile_trigger, Trigger};","highlight_start":26,"highlight_end":43}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `compile_pattern`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-pipeline\\src\\intent.rs:638:26\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m638\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use crate::trigger::{compile_pattern, compile_trigger, Trigger};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code examples:\n\n```compile_fail,E0308\nfn plus_one(x: i32) -> i32 {\n x + 1\n}\n\nplus_one(\"Not a number\");\n// ^^^^^^^^^^^^^^ expected `i32`, found `&str`\n\nif \"Not a bool\" {\n// ^^^^^^^^^^^^ expected `bool`, found `&str`\n}\n\nlet x: f32 = \"Not a float\";\n// --- ^^^^^^^^^^^^^ expected `f32`, found `&str`\n// |\n// expected due to this\n```\n\nThis error occurs when an expression was used in a place where the compiler\nexpected an expression of a different type. It can occur in several cases, the\nmost common being when calling a function and passing an argument which has a\ndifferent type than the matching type in the function declaration.\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":928,"byte_end":939,"line_start":33,"line_end":33,"column_start":8,"column_end":19,"is_primary":true,"text":[{"text":" Ok(permissions)","highlight_start":8,"highlight_end":19}],"label":"expected `Json>`, found `Vec`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":925,"byte_end":927,"line_start":33,"line_end":33,"column_start":5,"column_end":7,"is_primary":false,"text":[{"text":" Ok(permissions)","highlight_start":5,"highlight_end":7}],"label":"arguments to this enum variant are incorrect","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected struct `axum::Json>`\n found struct `Vec<_>`","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"the type constructed contains `Vec` due to the type of the argument passed","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":928,"byte_end":939,"line_start":33,"line_end":33,"column_start":8,"column_end":19,"is_primary":false,"text":[{"text":" Ok(permissions)","highlight_start":8,"highlight_end":19}],"label":"this argument influences the type of `Ok`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":925,"byte_end":940,"line_start":33,"line_end":33,"column_start":5,"column_end":20,"is_primary":true,"text":[{"text":" Ok(permissions)","highlight_start":5,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"tuple variant defined here","code":null,"level":"note","spans":[{"file_name":"C:\\Users\\szend\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib/rustlib/src/rust\\library\\core\\src\\result.rs","byte_start":21353,"byte_end":21355,"line_start":561,"line_end":561,"column_start":5,"column_end":7,"is_primary":true,"text":[{"text":" Ok(#[stable(feature = \"rust1\", since = \"1.0.0\")] T),","highlight_start":5,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"try wrapping the expression in `axum::Json`","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":928,"byte_end":928,"line_start":33,"line_end":33,"column_start":8,"column_end":8,"is_primary":true,"text":[{"text":" Ok(permissions)","highlight_start":8,"highlight_end":8}],"label":null,"suggested_replacement":"axum::Json(","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":939,"byte_end":939,"line_start":33,"line_end":33,"column_start":19,"column_end":19,"is_primary":true,"text":[{"text":" Ok(permissions)","highlight_start":19,"highlight_end":19}],"label":null,"suggested_replacement":")","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0308]\u001b[0m\u001b[1m\u001b[97m: mismatched types\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:33:8\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m33\u001b[0m \u001b[1m\u001b[96m|\u001b[0m Ok(permissions)\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m--\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mexpected `Json>`, found `Vec`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96marguments to this enum variant are incorrect\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: expected struct `\u001b[1m\u001b[35maxum::Json<\u001b[0mVec<_>\u001b[1m\u001b[35m>\u001b[0m`\n found struct `Vec<_>`\n\u001b[1m\u001b[96mhelp\u001b[0m: the type constructed contains `Vec` due to the type of the argument passed\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:33:5\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m33\u001b[0m \u001b[1m\u001b[96m|\u001b[0m Ok(permissions)\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m^^^\u001b[0m\u001b[1m\u001b[96m-----------\u001b[0m\u001b[1m\u001b[96m^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96mthis argument influences the type of `Ok`\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: tuple variant defined here\n \u001b[1m\u001b[96m--> \u001b[0mC:\\Users\\szend\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib/rustlib/src/rust\\library\\core\\src\\result.rs:561:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m561\u001b[0m \u001b[1m\u001b[96m|\u001b[0m Ok(#[stable(feature = \"rust1\", since = \"1.0.0\")] T),\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[92m^^\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: try wrapping the expression in `axum::Json`\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m33\u001b[0m \u001b[1m\u001b[96m| \u001b[0m Ok(\u001b[92maxum::Json(\u001b[0mpermissions\u001b[92m)\u001b[0m)\n \u001b[1m\u001b[96m|\u001b[0m \u001b[92m+++++++++++\u001b[0m \u001b[92m+\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.\n\nErroneous code examples:\n\n```compile_fail,E0308\nfn plus_one(x: i32) -> i32 {\n x + 1\n}\n\nplus_one(\"Not a number\");\n// ^^^^^^^^^^^^^^ expected `i32`, found `&str`\n\nif \"Not a bool\" {\n// ^^^^^^^^^^^^ expected `bool`, found `&str`\n}\n\nlet x: f32 = \"Not a float\";\n// --- ^^^^^^^^^^^^^ expected `f32`, found `&str`\n// |\n// expected due to this\n```\n\nThis error occurs when an expression was used in a place where the compiler\nexpected an expression of a different type. It can occur in several cases, the\nmost common being when calling a function and passing an argument which has a\ndifferent type than the matching type in the function declaration.\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":928,"byte_end":939,"line_start":33,"line_end":33,"column_start":8,"column_end":19,"is_primary":true,"text":[{"text":" Ok(permissions)","highlight_start":8,"highlight_end":19}],"label":"expected `Json>`, found `Vec`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":925,"byte_end":927,"line_start":33,"line_end":33,"column_start":5,"column_end":7,"is_primary":false,"text":[{"text":" Ok(permissions)","highlight_start":5,"highlight_end":7}],"label":"arguments to this enum variant are incorrect","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected struct `axum::Json>`\n found struct `Vec<_>`","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"the type constructed contains `Vec` due to the type of the argument passed","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":928,"byte_end":939,"line_start":33,"line_end":33,"column_start":8,"column_end":19,"is_primary":false,"text":[{"text":" Ok(permissions)","highlight_start":8,"highlight_end":19}],"label":"this argument influences the type of `Ok`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":925,"byte_end":940,"line_start":33,"line_end":33,"column_start":5,"column_end":20,"is_primary":true,"text":[{"text":" Ok(permissions)","highlight_start":5,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"tuple variant defined here","code":null,"level":"note","spans":[{"file_name":"C:\\Users\\szend\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib/rustlib/src/rust\\library\\core\\src\\result.rs","byte_start":21353,"byte_end":21355,"line_start":561,"line_end":561,"column_start":5,"column_end":7,"is_primary":true,"text":[{"text":" Ok(#[stable(feature = \"rust1\", since = \"1.0.0\")] T),","highlight_start":5,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"try wrapping the expression in `axum::Json`","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":928,"byte_end":928,"line_start":33,"line_end":33,"column_start":8,"column_end":8,"is_primary":true,"text":[{"text":" Ok(permissions)","highlight_start":8,"highlight_end":8}],"label":null,"suggested_replacement":"axum::Json(","suggestion_applicability":"MaybeIncorrect","expansion":null},{"file_name":"crates\\zclaw-saas\\src\\role\\handlers_ext.rs","byte_start":939,"byte_end":939,"line_start":33,"line_end":33,"column_start":19,"column_end":19,"is_primary":true,"text":[{"text":" Ok(permissions)","highlight_start":19,"highlight_end":19}],"label":null,"suggested_replacement":")","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0308]\u001b[0m\u001b[1m\u001b[97m: mismatched types\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:33:8\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m33\u001b[0m \u001b[1m\u001b[96m|\u001b[0m Ok(permissions)\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m--\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mexpected `Json>`, found `Vec`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96marguments to this enum variant are incorrect\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: expected struct `\u001b[1m\u001b[35maxum::Json<\u001b[0mVec<_>\u001b[1m\u001b[35m>\u001b[0m`\n found struct `Vec<_>`\n\u001b[1m\u001b[96mhelp\u001b[0m: the type constructed contains `Vec` due to the type of the argument passed\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\role\\handlers_ext.rs:33:5\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m33\u001b[0m \u001b[1m\u001b[96m|\u001b[0m Ok(permissions)\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m^^^\u001b[0m\u001b[1m\u001b[96m-----------\u001b[0m\u001b[1m\u001b[96m^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96mthis argument influences the type of `Ok`\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: tuple variant defined here\n \u001b[1m\u001b[96m--> \u001b[0mC:\\Users\\szend\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib/rustlib/src/rust\\library\\core\\src\\result.rs:561:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m561\u001b[0m \u001b[1m\u001b[96m|\u001b[0m Ok(#[stable(feature = \"rust1\", since = \"1.0.0\")] T),\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[92m^^\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: try wrapping the expression in `axum::Json`\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m33\u001b[0m \u001b[1m\u001b[96m| \u001b[0m Ok(\u001b[92maxum::Json(\u001b[0mpermissions\u001b[92m)\u001b[0m)\n \u001b[1m\u001b[96m|\u001b[0m \u001b[92m+++++++++++\u001b[0m \u001b[92m+\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `futures::StreamExt`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\relay\\service.rs","byte_start":165,"byte_end":183,"line_start":8,"line_end":8,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":"use futures::StreamExt;","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `futures::StreamExt`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\relay\\service.rs:8:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m8\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use futures::StreamExt;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `futures::StreamExt`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\relay\\service.rs","byte_start":165,"byte_end":183,"line_start":8,"line_end":8,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":"use futures::StreamExt;","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `futures::StreamExt`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\relay\\service.rs:8:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m8\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use futures::StreamExt;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-pipeline#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_pipeline","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_pipeline-ded81e063dcde53e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-types#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-types\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_types","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-types\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_types-d065612f3ccb3d07.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"desktop_lib","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"function `get_extraction_driver` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"desktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs","byte_start":8597,"byte_end":8618,"line_start":249,"line_end":249,"column_start":8,"column_end":29,"is_primary":true,"text":[{"text":"pub fn get_extraction_driver() -> Option> {","highlight_start":8,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `get_extraction_driver` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mdesktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs:249:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m249\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn get_extraction_driver() -> Option> {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"desktop_lib","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdesktop_lib-a483731ceceef2d4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"desktop_lib","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `zclaw_growth::MemoryType`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"desktop\\src-tauri\\src\\summarizer_adapter.rs","byte_start":3733,"byte_end":3757,"line_start":114,"line_end":114,"column_start":9,"column_end":33,"is_primary":true,"text":[{"text":" use zclaw_growth::MemoryType;","highlight_start":9,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"desktop\\src-tauri\\src\\summarizer_adapter.rs","byte_start":3729,"byte_end":3758,"line_start":114,"line_end":114,"column_start":5,"column_end":34,"is_primary":true,"text":[{"text":" use zclaw_growth::MemoryType;","highlight_start":5,"highlight_end":34}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `zclaw_growth::MemoryType`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mdesktop\\src-tauri\\src\\summarizer_adapter.rs:114:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m114\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use zclaw_growth::MemoryType;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"desktop_lib","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"function `get_extraction_driver` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"desktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs","byte_start":8597,"byte_end":8618,"line_start":249,"line_end":249,"column_start":8,"column_end":29,"is_primary":true,"text":[{"text":"pub fn get_extraction_driver() -> Option> {","highlight_start":8,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `get_extraction_driver` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mdesktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs:249:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m249\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn get_extraction_driver() -> Option> {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"desktop_lib","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"struct `DummyDriver` is never constructed","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"desktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs","byte_start":9065,"byte_end":9076,"line_start":266,"line_end":266,"column_start":16,"column_end":27,"is_primary":true,"text":[{"text":" struct DummyDriver;","highlight_start":16,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: struct `DummyDriver` is never constructed\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mdesktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs:266:16\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m266\u001b[0m \u001b[1m\u001b[96m|\u001b[0m struct DummyDriver;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"desktop_lib","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"method `parse_response_test` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"desktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs","byte_start":9086,"byte_end":9112,"line_start":267,"line_end":267,"column_start":9,"column_end":35,"is_primary":false,"text":[{"text":" impl TauriExtractionDriver {","highlight_start":9,"highlight_end":35}],"label":"method in this implementation","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"desktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs","byte_start":9130,"byte_end":9149,"line_start":268,"line_end":268,"column_start":16,"column_end":35,"is_primary":true,"text":[{"text":" fn parse_response_test(","highlight_start":16,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: method `parse_response_test` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mdesktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs:268:16\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m267\u001b[0m \u001b[1m\u001b[96m|\u001b[0m impl TauriExtractionDriver {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m--------------------------\u001b[0m \u001b[1m\u001b[96mmethod in this implementation\u001b[0m\n\u001b[1m\u001b[96m268\u001b[0m \u001b[1m\u001b[96m|\u001b[0m fn parse_response_test(\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"desktop_lib","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"non-local `impl` definition, `impl` blocks should be written at the same level as their item","code":{"code":"non_local_definitions","explanation":null},"level":"warning","spans":[{"file_name":"desktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs","byte_start":9091,"byte_end":9112,"line_start":267,"line_end":267,"column_start":14,"column_end":35,"is_primary":false,"text":[{"text":" impl TauriExtractionDriver {","highlight_start":14,"highlight_end":35}],"label":"`TauriExtractionDriver` is not local","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"desktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs","byte_start":8893,"byte_end":8923,"line_start":263,"line_end":263,"column_start":5,"column_end":35,"is_primary":false,"text":[{"text":" fn test_parse_empty_response() {","highlight_start":5,"highlight_end":35}],"label":"move the `impl` block outside of this function `test_parse_empty_response`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"desktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs","byte_start":9086,"byte_end":9112,"line_start":267,"line_end":267,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":" impl TauriExtractionDriver {","highlight_start":9,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"`#[warn(non_local_definitions)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: non-local `impl` definition, `impl` blocks should be written at the same level as their item\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mdesktop\\src-tauri\\src\\intelligence\\extraction_adapter.rs:267:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m263\u001b[0m \u001b[1m\u001b[96m|\u001b[0m fn test_parse_empty_response() {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m------------------------------\u001b[0m \u001b[1m\u001b[96mmove the `impl` block outside of this function `test_parse_empty_response`\u001b[0m\n\u001b[1m\u001b[96m...\u001b[0m\n\u001b[1m\u001b[96m267\u001b[0m \u001b[1m\u001b[96m|\u001b[0m impl TauriExtractionDriver {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^\u001b[0m\u001b[1m\u001b[96m---------------------\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[96m`TauriExtractionDriver` is not local\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(non_local_definitions)]` on by default\n\n"}} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"desktop_lib","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdesktop_lib-9830e2683782e39b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"desktop","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdesktop-50cc69ce47b9ded1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"desktop","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdesktop-2eeda075c01f273c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-memory#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-memory\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_memory","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-memory\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"missing fields `compaction_threshold` and `workspace` in initializer of `AgentConfig`","code":{"code":"E0063","explanation":"A struct's or struct-like enum variant's field was not provided.\n\nErroneous code example:\n\n```compile_fail,E0063\nstruct Foo {\n x: i32,\n y: i32,\n}\n\nfn main() {\n let x = Foo { x: 0 }; // error: missing field: `y`\n}\n```\n\nEach field should be specified exactly once. Example:\n\n```\nstruct Foo {\n x: i32,\n y: i32,\n}\n\nfn main() {\n let x = Foo { x: 0, y: 0 }; // ok!\n}\n```\n"},"level":"error","spans":[{"file_name":"crates\\zclaw-memory\\src\\store.rs","byte_start":16466,"byte_end":16477,"line_start":481,"line_end":481,"column_start":9,"column_end":20,"is_primary":true,"text":[{"text":" AgentConfig {","highlight_start":9,"highlight_end":20}],"label":"missing `compaction_threshold` and `workspace`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[91merror[E0063]\u001b[0m\u001b[1m\u001b[97m: missing fields `compaction_threshold` and `workspace` in initializer of `AgentConfig`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-memory\\src\\store.rs:481:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m481\u001b[0m \u001b[1m\u001b[96m|\u001b[0m AgentConfig {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mmissing `compaction_threshold` and `workspace`\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-memory#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-memory\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_memory","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-memory\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0063`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1m\u001b[97mFor more information about this error, try `rustc --explain E0063`.\u001b[0m\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `std::collections::HashMap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":148,"byte_end":173,"line_start":5,"line_end":5,"column_start":5,"column_end":30,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":5,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":144,"byte_end":175,"line_start":5,"line_end":6,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":31},{"text":"use std::time::Duration;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `std::collections::HashMap`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\scheduler.rs:5:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m5\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use std::collections::HashMap;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `std::collections::HashMap`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":148,"byte_end":173,"line_start":5,"line_end":5,"column_start":5,"column_end":30,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":5,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":144,"byte_end":175,"line_start":5,"line_end":6,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::collections::HashMap;","highlight_start":1,"highlight_end":31},{"text":"use std::time::Duration;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `std::collections::HashMap`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\scheduler.rs:5:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m5\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use std::collections::HashMap;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused imports: `ConfigItemRow` and `ConfigSyncLogRow`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\migration\\service.rs","byte_start":178,"byte_end":191,"line_start":6,"line_end":6,"column_start":21,"column_end":34,"is_primary":true,"text":[{"text":"use crate::models::{ConfigItemRow, ConfigSyncLogRow};","highlight_start":21,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\migration\\service.rs","byte_start":193,"byte_end":209,"line_start":6,"line_end":6,"column_start":36,"column_end":52,"is_primary":true,"text":[{"text":"use crate::models::{ConfigItemRow, ConfigSyncLogRow};","highlight_start":36,"highlight_end":52}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\migration\\service.rs","byte_start":158,"byte_end":213,"line_start":6,"line_end":7,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::models::{ConfigItemRow, ConfigSyncLogRow};","highlight_start":1,"highlight_end":54},{"text":"use super::types::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused imports: `ConfigItemRow` and `ConfigSyncLogRow`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\migration\\service.rs:6:21\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m6\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use crate::models::{ConfigItemRow, ConfigSyncLogRow};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused imports: `ConfigItemRow` and `ConfigSyncLogRow`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\migration\\service.rs","byte_start":178,"byte_end":191,"line_start":6,"line_end":6,"column_start":21,"column_end":34,"is_primary":true,"text":[{"text":"use crate::models::{ConfigItemRow, ConfigSyncLogRow};","highlight_start":21,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"crates\\zclaw-saas\\src\\migration\\service.rs","byte_start":193,"byte_end":209,"line_start":6,"line_end":6,"column_start":36,"column_end":52,"is_primary":true,"text":[{"text":"use crate::models::{ConfigItemRow, ConfigSyncLogRow};","highlight_start":36,"highlight_end":52}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\migration\\service.rs","byte_start":158,"byte_end":213,"line_start":6,"line_end":7,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::models::{ConfigItemRow, ConfigSyncLogRow};","highlight_start":1,"highlight_end":54},{"text":"use super::types::*;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused imports: `ConfigItemRow` and `ConfigSyncLogRow`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\migration\\service.rs:6:21\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m6\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use crate::models::{ConfigItemRow, ConfigSyncLogRow};\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `futures::StreamExt`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\relay\\service.rs","byte_start":199,"byte_end":217,"line_start":9,"line_end":9,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":"use futures::StreamExt;","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `futures::StreamExt`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\relay\\service.rs:9:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m9\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use futures::StreamExt;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `futures::StreamExt`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\relay\\service.rs","byte_start":199,"byte_end":217,"line_start":9,"line_end":9,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":"use futures::StreamExt;","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `futures::StreamExt`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\relay\\service.rs:9:5\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m9\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use futures::StreamExt;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} {"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `page`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\common.rs","byte_start":1048,"byte_end":1052,"line_start":42,"line_end":42,"column_start":14,"column_end":18,"is_primary":true,"text":[{"text":" let (page, size, offset) = normalize_pagination(None, Some(999));","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\common.rs","byte_start":1048,"byte_end":1052,"line_start":42,"line_end":42,"column_start":14,"column_end":18,"is_primary":true,"text":[{"text":" let (page, size, offset) = normalize_pagination(None, Some(999));","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":"_page","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `page`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\common.rs:42:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m42\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let (page, size, offset) = normalize_pagination(None, Some(999));\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_page`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"}} {"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `offset`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\common.rs","byte_start":1060,"byte_end":1066,"line_start":42,"line_end":42,"column_start":26,"column_end":32,"is_primary":true,"text":[{"text":" let (page, size, offset) = normalize_pagination(None, Some(999));","highlight_start":26,"highlight_end":32}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\common.rs","byte_start":1060,"byte_end":1066,"line_start":42,"line_end":42,"column_start":26,"column_end":32,"is_primary":true,"text":[{"text":" let (page, size, offset) = normalize_pagination(None, Some(999));","highlight_start":26,"highlight_end":32}],"label":null,"suggested_replacement":"_offset","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `offset`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\common.rs:42:26\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m42\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let (page, size, offset) = normalize_pagination(None, Some(999));\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_offset`\u001b[0m\n\n"}} {"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `page`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\common.rs","byte_start":1226,"byte_end":1230,"line_start":48,"line_end":48,"column_start":14,"column_end":18,"is_primary":true,"text":[{"text":" let (page, size, offset) = normalize_pagination(Some(3), Some(10));","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\common.rs","byte_start":1226,"byte_end":1230,"line_start":48,"line_end":48,"column_start":14,"column_end":18,"is_primary":true,"text":[{"text":" let (page, size, offset) = normalize_pagination(Some(3), Some(10));","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":"_page","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `page`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\common.rs:48:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m48\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let (page, size, offset) = normalize_pagination(Some(3), Some(10));\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_page`\u001b[0m\n\n"}} {"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\common.rs","byte_start":1232,"byte_end":1236,"line_start":48,"line_end":48,"column_start":20,"column_end":24,"is_primary":true,"text":[{"text":" let (page, size, offset) = normalize_pagination(Some(3), Some(10));","highlight_start":20,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\common.rs","byte_start":1232,"byte_end":1236,"line_start":48,"line_end":48,"column_start":20,"column_end":24,"is_primary":true,"text":[{"text":" let (page, size, offset) = normalize_pagination(Some(3), Some(10));","highlight_start":20,"highlight_end":24}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\common.rs:48:20\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m48\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let (page, size, offset) = normalize_pagination(Some(3), Some(10));\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"}} -{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-pipeline#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_pipeline","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_pipeline-ded81e063dcde53e.rmeta"],"executable":null,"fresh":false} -{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-pipeline#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_pipeline","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_pipeline-10ed1f5161482e46.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `db`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":2094,"byte_end":2096,"line_start":68,"line_end":68,"column_start":13,"column_end":15,"is_primary":true,"text":[{"text":" let db = db.clone();","highlight_start":13,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":2094,"byte_end":2096,"line_start":68,"line_end":68,"column_start":13,"column_end":15,"is_primary":true,"text":[{"text":" let db = db.clone();","highlight_start":13,"highlight_end":15}],"label":null,"suggested_replacement":"_db","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `db`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\scheduler.rs:68:13\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m68\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let db = db.clone();\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_db`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `db_clone`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":3393,"byte_end":3401,"line_start":100,"line_end":100,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let db_clone = db.clone();","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":3393,"byte_end":3401,"line_start":100,"line_end":100,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let db_clone = db.clone();","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":"_db_clone","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `db_clone`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\scheduler.rs:100:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m100\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let db_clone = db.clone();\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_db_clone`\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `db`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":2094,"byte_end":2096,"line_start":68,"line_end":68,"column_start":13,"column_end":15,"is_primary":true,"text":[{"text":" let db = db.clone();","highlight_start":13,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":2094,"byte_end":2096,"line_start":68,"line_end":68,"column_start":13,"column_end":15,"is_primary":true,"text":[{"text":" let db = db.clone();","highlight_start":13,"highlight_end":15}],"label":null,"suggested_replacement":"_db","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `db`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\scheduler.rs:68:13\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m68\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let db = db.clone();\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_db`\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `db_clone`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":3393,"byte_end":3401,"line_start":100,"line_end":100,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let db_clone = db.clone();","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\scheduler.rs","byte_start":3393,"byte_end":3401,"line_start":100,"line_end":100,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let db_clone = db.clone();","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":"_db_clone","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `db_clone`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\scheduler.rs:100:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m100\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let db_clone = db.clone();\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_db_clone`\u001b[0m\n\n"}} {"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `ctx`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\migration\\handlers.rs","byte_start":4644,"byte_end":4647,"line_start":127,"line_end":127,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":" Extension(ctx): Extension,","highlight_start":15,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\migration\\handlers.rs","byte_start":4644,"byte_end":4647,"line_start":127,"line_end":127,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":" Extension(ctx): Extension,","highlight_start":15,"highlight_end":18}],"label":null,"suggested_replacement":"_ctx","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `ctx`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\migration\\handlers.rs:127:15\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m127\u001b[0m \u001b[1m\u001b[96m|\u001b[0m Extension(ctx): Extension,\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_ctx`\u001b[0m\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `ctx`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\migration\\handlers.rs","byte_start":4644,"byte_end":4647,"line_start":127,"line_end":127,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":" Extension(ctx): Extension,","highlight_start":15,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\migration\\handlers.rs","byte_start":4644,"byte_end":4647,"line_start":127,"line_end":127,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":" Extension(ctx): Extension,","highlight_start":15,"highlight_end":18}],"label":null,"suggested_replacement":"_ctx","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `ctx`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\migration\\handlers.rs:127:15\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m127\u001b[0m \u001b[1m\u001b[96m|\u001b[0m Extension(ctx): Extension,\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_ctx`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"value assigned to `param_idx` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\telemetry\\service.rs","byte_start":2853,"byte_end":2867,"line_start":98,"line_end":98,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" param_idx += 1;","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: value assigned to `param_idx` is never read\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\telemetry\\service.rs:98:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m98\u001b[0m \u001b[1m\u001b[96m|\u001b[0m param_idx += 1;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"value assigned to `param_idx` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\telemetry\\service.rs","byte_start":2853,"byte_end":2867,"line_start":98,"line_end":98,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" param_idx += 1;","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: value assigned to `param_idx` is never read\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\telemetry\\service.rs:98:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m98\u001b[0m \u001b[1m\u001b[96m|\u001b[0m param_idx += 1;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"Some errors have detailed explanations: E0252, E0308, E0423, E0425, E0428.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1m\u001b[97mSome errors have detailed explanations: E0252, E0308, E0423, E0425, E0428.\u001b[0m\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"For more information about an error, try `rustc --explain E0252`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1m\u001b[97mFor more information about an error, try `rustc --explain E0252`.\u001b[0m\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"Some errors have detailed explanations: E0252, E0308, E0423, E0425, E0428.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1m\u001b[97mSome errors have detailed explanations: E0252, E0308, E0423, E0425, E0428.\u001b[0m\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"For more information about an error, try `rustc --explain E0252`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1m\u001b[97mFor more information about an error, try `rustc --explain E0252`.\u001b[0m\n"}} -{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"desktop_lib","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `zclaw_growth::MemoryType`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"desktop\\src-tauri\\src\\summarizer_adapter.rs","byte_start":3733,"byte_end":3757,"line_start":114,"line_end":114,"column_start":9,"column_end":33,"is_primary":true,"text":[{"text":" use zclaw_growth::MemoryType;","highlight_start":9,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"desktop\\src-tauri\\src\\summarizer_adapter.rs","byte_start":3729,"byte_end":3758,"line_start":114,"line_end":114,"column_start":5,"column_end":34,"is_primary":true,"text":[{"text":" use zclaw_growth::MemoryType;","highlight_start":5,"highlight_end":34}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused import: `zclaw_growth::MemoryType`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mdesktop\\src-tauri\\src\\summarizer_adapter.rs:114:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m114\u001b[0m \u001b[1m\u001b[96m|\u001b[0m use zclaw_growth::MemoryType;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"}} -{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"desktop_lib","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdesktop_lib-a483731ceceef2d4.rmeta"],"executable":null,"fresh":false} -{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["staticlib","cdylib","rlib"],"crate_types":["staticlib","cdylib","rlib"],"name":"desktop_lib","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdesktop_lib-9830e2683782e39b.rmeta"],"executable":null,"fresh":false} -{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"desktop","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdesktop-50cc69ce47b9ded1.rmeta"],"executable":null,"fresh":false} -{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/desktop/src-tauri#desktop@0.1.0","manifest_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"desktop","src_path":"G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libdesktop-2eeda075c01f273c.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `ctx`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\migration\\handlers.rs","byte_start":4644,"byte_end":4647,"line_start":127,"line_end":127,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":" Extension(ctx): Extension,","highlight_start":15,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\src\\migration\\handlers.rs","byte_start":4644,"byte_end":4647,"line_start":127,"line_end":127,"column_start":15,"column_end":18,"is_primary":true,"text":[{"text":" Extension(ctx): Extension,","highlight_start":15,"highlight_end":18}],"label":null,"suggested_replacement":"_ctx","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `ctx`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\migration\\handlers.rs:127:15\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m127\u001b[0m \u001b[1m\u001b[96m|\u001b[0m Extension(ctx): Extension,\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_ctx`\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"value assigned to `param_idx` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\prompt\\service.rs","byte_start":4240,"byte_end":4254,"line_start":105,"line_end":105,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" param_idx += 1;","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: value assigned to `param_idx` is never read\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\prompt\\service.rs:105:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m105\u001b[0m \u001b[1m\u001b[96m|\u001b[0m param_idx += 1;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"value assigned to `param_idx` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\prompt\\service.rs","byte_start":4240,"byte_end":4254,"line_start":105,"line_end":105,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" param_idx += 1;","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: value assigned to `param_idx` is never read\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\prompt\\service.rs:105:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m105\u001b[0m \u001b[1m\u001b[96m|\u001b[0m param_idx += 1;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"value assigned to `param_idx` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\telemetry\\service.rs","byte_start":4007,"byte_end":4021,"line_start":120,"line_end":120,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" param_idx += 1;","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: value assigned to `param_idx` is never read\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\telemetry\\service.rs:120:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m120\u001b[0m \u001b[1m\u001b[96m|\u001b[0m param_idx += 1;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mhelp\u001b[0m: maybe it is overwritten before being read?\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"message":{"$message_type":"diagnostic","message":"value assigned to `param_idx` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\src\\telemetry\\service.rs","byte_start":4007,"byte_end":4021,"line_start":120,"line_end":120,"column_start":9,"column_end":23,"is_primary":true,"text":[{"text":" param_idx += 1;","highlight_start":9,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: value assigned to `param_idx` is never read\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\src\\telemetry\\service.rs:120:9\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m120\u001b[0m \u001b[1m\u001b[96m|\u001b[0m param_idx += 1;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mhelp\u001b[0m: maybe it is overwritten before being read?\n\n"}} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_saas-72a9fbf3f830e69e.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zclaw_saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_saas-bdfcbb25abc6c767.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"relay_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\relay_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `body`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\relay_test.rs","byte_start":1485,"byte_end":1489,"line_start":41,"line_end":41,"column_start":18,"column_end":22,"is_primary":true,"text":[{"text":" let (status, body) = send(&app, get(\"/api/v1/relay/tasks\", &token)).await;","highlight_start":18,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\tests\\relay_test.rs","byte_start":1485,"byte_end":1489,"line_start":41,"line_end":41,"column_start":18,"column_end":22,"is_primary":true,"text":[{"text":" let (status, body) = send(&app, get(\"/api/v1/relay/tasks\", &token)).await;","highlight_start":18,"highlight_end":22}],"label":null,"suggested_replacement":"_body","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `body`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\relay_test.rs:41:18\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m41\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let (status, body) = send(&app, get(\"/api/v1/relay/tasks\", &token)).await;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_body`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"agent_template_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\agent_template_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"constant `SCHEMA_VERSION` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":1072,"byte_end":1086,"line_start":36,"line_end":36,"column_start":7,"column_end":21,"is_primary":true,"text":[{"text":"const SCHEMA_VERSION: u32 = 2;","highlight_start":7,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: constant `SCHEMA_VERSION` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:36:7\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m36\u001b[0m \u001b[1m\u001b[96m|\u001b[0m const SCHEMA_VERSION: u32 = 2;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"agent_template_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\agent_template_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `put` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":8983,"byte_end":8986,"line_start":268,"line_end":268,"column_start":8,"column_end":11,"is_primary":true,"text":[{"text":"pub fn put(uri: &str, token: &str, body: serde_json::Value) -> Request {","highlight_start":8,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `put` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:268:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m268\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn put(uri: &str, token: &str, body: serde_json::Value) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"agent_template_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\agent_template_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `patch` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":9303,"byte_end":9308,"line_start":278,"line_end":278,"column_start":8,"column_end":13,"is_primary":true,"text":[{"text":"pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {","highlight_start":8,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `patch` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:278:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m278\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"agent_template_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\agent_template_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `super_admin_token` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":12759,"byte_end":12776,"line_start":373,"line_end":373,"column_start":14,"column_end":31,"is_primary":true,"text":[{"text":"pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {","highlight_start":14,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `super_admin_token` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:373:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m373\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"prompt_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\prompt_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"constant `SCHEMA_VERSION` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":1072,"byte_end":1086,"line_start":36,"line_end":36,"column_start":7,"column_end":21,"is_primary":true,"text":[{"text":"const SCHEMA_VERSION: u32 = 2;","highlight_start":7,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: constant `SCHEMA_VERSION` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:36:7\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m36\u001b[0m \u001b[1m\u001b[96m|\u001b[0m const SCHEMA_VERSION: u32 = 2;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"prompt_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\prompt_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `patch` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":9303,"byte_end":9308,"line_start":278,"line_end":278,"column_start":8,"column_end":13,"is_primary":true,"text":[{"text":"pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {","highlight_start":8,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `patch` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:278:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m278\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"role_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\role_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"constant `SCHEMA_VERSION` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":1072,"byte_end":1086,"line_start":36,"line_end":36,"column_start":7,"column_end":21,"is_primary":true,"text":[{"text":"const SCHEMA_VERSION: u32 = 2;","highlight_start":7,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: constant `SCHEMA_VERSION` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:36:7\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m36\u001b[0m \u001b[1m\u001b[96m|\u001b[0m const SCHEMA_VERSION: u32 = 2;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"role_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\role_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `patch` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":9303,"byte_end":9308,"line_start":278,"line_end":278,"column_start":8,"column_end":13,"is_primary":true,"text":[{"text":"pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {","highlight_start":8,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `patch` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:278:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m278\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"role_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\role_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `super_admin_token` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":12759,"byte_end":12776,"line_start":373,"line_end":373,"column_start":14,"column_end":31,"is_primary":true,"text":[{"text":"pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {","highlight_start":14,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `super_admin_token` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:373:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m373\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"relay_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\relay_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"constant `SCHEMA_VERSION` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":1072,"byte_end":1086,"line_start":36,"line_end":36,"column_start":7,"column_end":21,"is_primary":true,"text":[{"text":"const SCHEMA_VERSION: u32 = 2;","highlight_start":7,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: constant `SCHEMA_VERSION` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:36:7\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m36\u001b[0m \u001b[1m\u001b[96m|\u001b[0m const SCHEMA_VERSION: u32 = 2;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"relay_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\relay_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `patch` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":9303,"byte_end":9308,"line_start":278,"line_end":278,"column_start":8,"column_end":13,"is_primary":true,"text":[{"text":"pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {","highlight_start":8,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `patch` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:278:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m278\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"relay_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\relay_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `super_admin_token` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":12759,"byte_end":12776,"line_start":373,"line_end":373,"column_start":14,"column_end":31,"is_primary":true,"text":[{"text":"pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {","highlight_start":14,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `super_admin_token` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:373:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m373\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"telemetry_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\telemetry_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"constant `SCHEMA_VERSION` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":1072,"byte_end":1086,"line_start":36,"line_end":36,"column_start":7,"column_end":21,"is_primary":true,"text":[{"text":"const SCHEMA_VERSION: u32 = 2;","highlight_start":7,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: constant `SCHEMA_VERSION` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:36:7\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m36\u001b[0m \u001b[1m\u001b[96m|\u001b[0m const SCHEMA_VERSION: u32 = 2;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"telemetry_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\telemetry_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `delete` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":8171,"byte_end":8177,"line_start":240,"line_end":240,"column_start":8,"column_end":14,"is_primary":true,"text":[{"text":"pub fn delete(uri: &str, token: &str) -> Request {","highlight_start":8,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `delete` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:240:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m240\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn delete(uri: &str, token: &str) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"telemetry_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\telemetry_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `put` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":8983,"byte_end":8986,"line_start":268,"line_end":268,"column_start":8,"column_end":11,"is_primary":true,"text":[{"text":"pub fn put(uri: &str, token: &str, body: serde_json::Value) -> Request {","highlight_start":8,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `put` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:268:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m268\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn put(uri: &str, token: &str, body: serde_json::Value) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"telemetry_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\telemetry_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `patch` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":9303,"byte_end":9308,"line_start":278,"line_end":278,"column_start":8,"column_end":13,"is_primary":true,"text":[{"text":"pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {","highlight_start":8,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `patch` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:278:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m278\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"telemetry_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\telemetry_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `login` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":11338,"byte_end":11343,"line_start":333,"line_end":333,"column_start":14,"column_end":19,"is_primary":true,"text":[{"text":"pub async fn login(","highlight_start":14,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `login` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:333:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m333\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub async fn login(\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"telemetry_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\telemetry_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `admin_token` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":12293,"byte_end":12304,"line_start":361,"line_end":361,"column_start":14,"column_end":25,"is_primary":true,"text":[{"text":"pub async fn admin_token(app: &Router, pool: &PgPool, username: &str) -> String {","highlight_start":14,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `admin_token` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:361:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m361\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub async fn admin_token(app: &Router, pool: &PgPool, username: &str) -> String {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"telemetry_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\telemetry_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `super_admin_token` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":12759,"byte_end":12776,"line_start":373,"line_end":373,"column_start":14,"column_end":31,"is_primary":true,"text":[{"text":"pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {","highlight_start":14,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `super_admin_token` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:373:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m373\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"account_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\account_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"constant `SCHEMA_VERSION` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":1072,"byte_end":1086,"line_start":36,"line_end":36,"column_start":7,"column_end":21,"is_primary":true,"text":[{"text":"const SCHEMA_VERSION: u32 = 2;","highlight_start":7,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: constant `SCHEMA_VERSION` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:36:7\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m36\u001b[0m \u001b[1m\u001b[96m|\u001b[0m const SCHEMA_VERSION: u32 = 2;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"account_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\account_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `put` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":8983,"byte_end":8986,"line_start":268,"line_end":268,"column_start":8,"column_end":11,"is_primary":true,"text":[{"text":"pub fn put(uri: &str, token: &str, body: serde_json::Value) -> Request {","highlight_start":8,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `put` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:268:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m268\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn put(uri: &str, token: &str, body: serde_json::Value) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"account_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\account_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `super_admin_token` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":12759,"byte_end":12776,"line_start":373,"line_end":373,"column_start":14,"column_end":31,"is_primary":true,"text":[{"text":"pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {","highlight_start":14,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `super_admin_token` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:373:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m373\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"zclaw-saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_saas-249c630965a85df9.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"migration_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\migration_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"constant `SCHEMA_VERSION` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":1072,"byte_end":1086,"line_start":36,"line_end":36,"column_start":7,"column_end":21,"is_primary":true,"text":[{"text":"const SCHEMA_VERSION: u32 = 2;","highlight_start":7,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: constant `SCHEMA_VERSION` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:36:7\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m36\u001b[0m \u001b[1m\u001b[96m|\u001b[0m const SCHEMA_VERSION: u32 = 2;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"migration_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\migration_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `patch` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":9303,"byte_end":9308,"line_start":278,"line_end":278,"column_start":8,"column_end":13,"is_primary":true,"text":[{"text":"pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {","highlight_start":8,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `patch` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:278:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m278\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"migration_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\migration_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `super_admin_token` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":12759,"byte_end":12776,"line_start":373,"line_end":373,"column_start":14,"column_end":31,"is_primary":true,"text":[{"text":"pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {","highlight_start":14,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `super_admin_token` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:373:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m373\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"model_config_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\model_config_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"constant `SCHEMA_VERSION` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":1072,"byte_end":1086,"line_start":36,"line_end":36,"column_start":7,"column_end":21,"is_primary":true,"text":[{"text":"const SCHEMA_VERSION: u32 = 2;","highlight_start":7,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: constant `SCHEMA_VERSION` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:36:7\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m36\u001b[0m \u001b[1m\u001b[96m|\u001b[0m const SCHEMA_VERSION: u32 = 2;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"model_config_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\model_config_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `put` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":8983,"byte_end":8986,"line_start":268,"line_end":268,"column_start":8,"column_end":11,"is_primary":true,"text":[{"text":"pub fn put(uri: &str, token: &str, body: serde_json::Value) -> Request {","highlight_start":8,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `put` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:268:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m268\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn put(uri: &str, token: &str, body: serde_json::Value) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"model_config_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\model_config_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `super_admin_token` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":12759,"byte_end":12776,"line_start":373,"line_end":373,"column_start":14,"column_end":31,"is_primary":true,"text":[{"text":"pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {","highlight_start":14,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `super_admin_token` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:373:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m373\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"zclaw-saas","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\src\\main.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libzclaw_saas-2e30dd19ef5d1257.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"auth_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\auth_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `body`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\auth_test.rs","byte_start":8417,"byte_end":8421,"line_start":223,"line_end":223,"column_start":18,"column_end":22,"is_primary":true,"text":[{"text":" let (status, body) = send(","highlight_start":18,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\tests\\auth_test.rs","byte_start":8417,"byte_end":8421,"line_start":223,"line_end":223,"column_start":18,"column_end":22,"is_primary":true,"text":[{"text":" let (status, body) = send(","highlight_start":18,"highlight_end":22}],"label":null,"suggested_replacement":"_body","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `body`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\auth_test.rs:223:18\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m223\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let (status, body) = send(\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_body`\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"auth_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\auth_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"unused variable: `body`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\auth_test.rs","byte_start":12080,"byte_end":12084,"line_start":325,"line_end":325,"column_start":18,"column_end":22,"is_primary":true,"text":[{"text":" let (status, body) = send(","highlight_start":18,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"crates\\zclaw-saas\\tests\\auth_test.rs","byte_start":12080,"byte_end":12084,"line_start":325,"line_end":325,"column_start":18,"column_end":22,"is_primary":true,"text":[{"text":" let (status, body) = send(","highlight_start":18,"highlight_end":22}],"label":null,"suggested_replacement":"_body","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: unused variable: `body`\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\auth_test.rs:325:18\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m325\u001b[0m \u001b[1m\u001b[96m|\u001b[0m let (status, body) = send(\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^\u001b[0m \u001b[1m\u001b[93mhelp: if this is intentional, prefix it with an underscore: `_body`\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"auth_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\auth_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"constant `SCHEMA_VERSION` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":1072,"byte_end":1086,"line_start":36,"line_end":36,"column_start":7,"column_end":21,"is_primary":true,"text":[{"text":"const SCHEMA_VERSION: u32 = 2;","highlight_start":7,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: constant `SCHEMA_VERSION` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:36:7\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m36\u001b[0m \u001b[1m\u001b[96m|\u001b[0m const SCHEMA_VERSION: u32 = 2;\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[96m|\u001b[0m\n \u001b[1m\u001b[96m= \u001b[0m\u001b[1m\u001b[97mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"auth_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\auth_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `delete` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":8171,"byte_end":8177,"line_start":240,"line_end":240,"column_start":8,"column_end":14,"is_primary":true,"text":[{"text":"pub fn delete(uri: &str, token: &str) -> Request {","highlight_start":8,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `delete` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:240:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m240\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn delete(uri: &str, token: &str) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"auth_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\auth_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `patch` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":9303,"byte_end":9308,"line_start":278,"line_end":278,"column_start":8,"column_end":13,"is_primary":true,"text":[{"text":"pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {","highlight_start":8,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `patch` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:278:8\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m278\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub fn patch(uri: &str, token: &str, body: serde_json::Value) -> Request {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"auth_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\auth_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `admin_token` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":12293,"byte_end":12304,"line_start":361,"line_end":361,"column_start":14,"column_end":25,"is_primary":true,"text":[{"text":"pub async fn admin_token(app: &Router, pool: &PgPool, username: &str) -> String {","highlight_start":14,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `admin_token` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:361:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m361\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub async fn admin_token(app: &Router, pool: &PgPool, username: &str) -> String {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"auth_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\auth_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"function `super_admin_token` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"crates\\zclaw-saas\\tests\\common\\mod.rs","byte_start":12759,"byte_end":12776,"line_start":373,"line_end":373,"column_start":14,"column_end":31,"is_primary":true,"text":[{"text":"pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {","highlight_start":14,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[93mwarning\u001b[0m\u001b[1m\u001b[97m: function `super_admin_token` is never used\u001b[0m\n \u001b[1m\u001b[96m--> \u001b[0mcrates\\zclaw-saas\\tests\\common\\mod.rs:373:14\n \u001b[1m\u001b[96m|\u001b[0m\n\u001b[1m\u001b[96m373\u001b[0m \u001b[1m\u001b[96m|\u001b[0m pub async fn super_admin_token(app: &Router, pool: &PgPool, username: &str) -> String {\n \u001b[1m\u001b[96m|\u001b[0m \u001b[1m\u001b[93m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"agent_template_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\agent_template_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libagent_template_test-57801604be9c98c4.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"prompt_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\prompt_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libprompt_test-3727d31c512b56e7.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"relay_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\relay_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librelay_test-9c9e328c97b905d0.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"role_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\role_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\librole_test-ab72c1233d27d70e.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"account_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\account_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libaccount_test-0117d70272c539cb.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"telemetry_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\telemetry_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libtelemetry_test-cf90c21dd6a4a513.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"migration_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\migration_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmigration_test-4d5747e05528943c.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"model_config_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\model_config_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libmodel_config_test-c114c7249fbcfb80.rmeta"],"executable":null,"fresh":false} +{"reason":"compiler-artifact","package_id":"path+file:///G:/ZClaw_openfang/crates/zclaw-saas#0.1.0","manifest_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\Cargo.toml","target":{"kind":["test"],"crate_types":["bin"],"name":"auth_test","src_path":"G:\\ZClaw_openfang\\crates\\zclaw-saas\\tests\\auth_test.rs","edition":"2021","doc":false,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":true},"features":[],"filenames":["G:\\ZClaw_openfang\\target\\debug\\deps\\libauth_test-f7e9105d5ed6da35.rmeta"],"executable":null,"fresh":false} {"reason":"build-finished","success":false}