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/current_dir.rs | 6 ------ mling/src/res/manifest_path.rs | 13 ------------- mling/src/res/mod.rs | 5 ----- 3 files changed, 24 deletions(-) delete mode 100644 mling/src/res/current_dir.rs delete mode 100644 mling/src/res/manifest_path.rs delete mode 100644 mling/src/res/mod.rs (limited to 'mling/src/res') diff --git a/mling/src/res/current_dir.rs b/mling/src/res/current_dir.rs deleted file mode 100644 index b928596..0000000 --- a/mling/src/res/current_dir.rs +++ /dev/null @@ -1,6 +0,0 @@ -use std::path::PathBuf; - -#[derive(Default, Clone)] -pub struct ResCurrentDir { - pub path: PathBuf, -} 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() - } -} diff --git a/mling/src/res/mod.rs b/mling/src/res/mod.rs deleted file mode 100644 index caa843c..0000000 --- a/mling/src/res/mod.rs +++ /dev/null @@ -1,5 +0,0 @@ -mod current_dir; -pub use current_dir::*; - -mod manifest_path; -pub use manifest_path::*; -- cgit