From 48116f90e5b405ceada30db5420dcbef94b10518 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 10 Jul 2026 17:00:15 +0800 Subject: fix: update manifest path references from dev_tools to .run --- .run/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.run/src/lib.rs') diff --git a/.run/src/lib.rs b/.run/src/lib.rs index d38a156..232afb3 100644 --- a/.run/src/lib.rs +++ b/.run/src/lib.rs @@ -316,8 +316,8 @@ pub fn cargo_tomls() -> Vec { for entry in entries.flatten() { let path = entry.path(); if path.is_dir() { - // Skip the dev_tools directory - if path.file_name().and_then(|n| n.to_str()) == Some("dev_tools") { + // Skip the .run directory + if path.file_name().and_then(|n| n.to_str()) == Some(".run") { continue; } dirs.push(path); -- cgit