From 62e323c80306d7dca68e47377a0ed6f4e146ba48 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 20 Jul 2026 15:29:22 +0800 Subject: feat: remove deprecated mling scaffolding tool The mling CLI tool is being rewritten, so remove all its source files, resources, and workspace membership to clean up the repository --- mling/src/res/manifest_path.rs | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 mling/src/res/manifest_path.rs (limited to 'mling/src/res/manifest_path.rs') diff --git a/mling/src/res/manifest_path.rs b/mling/src/res/manifest_path.rs deleted file mode 100644 index 7f1686e..0000000 --- a/mling/src/res/manifest_path.rs +++ /dev/null @@ -1,13 +0,0 @@ -use std::path::PathBuf; - -#[derive(Default, Clone)] -pub struct ResManifestPath { - pub raw: Option, - pub resolved: Option, -} - -impl ResManifestPath { - pub fn resolved(&self) -> &PathBuf { - self.resolved.as_ref().unwrap() - } -} -- cgit