aboutsummaryrefslogtreecommitdiff
path: root/mling/build.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-20 15:29:22 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-20 15:29:22 +0800
commit62e323c80306d7dca68e47377a0ed6f4e146ba48 (patch)
tree0c6fe91d7197c83af52b08f793d12b0f01646d7d /mling/build.rs
parent33da7c8cb4f24caeef4e8127bc484bc9d236a0f3 (diff)
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
Diffstat (limited to 'mling/build.rs')
-rw-r--r--mling/build.rs63
1 files changed, 0 insertions, 63 deletions
diff --git a/mling/build.rs b/mling/build.rs
deleted file mode 100644
index 9a7b503..0000000
--- a/mling/build.rs
+++ /dev/null
@@ -1,63 +0,0 @@
-use std::path::Path;
-use std::process::Command;
-
-use mingling::build::analyze_and_build_type_mapping;
-use mingling::build::build_comp_scripts;
-
-fn main() {
- build_version_info();
- build_completion();
- analyze_and_build_type_mapping().unwrap();
-}
-
-fn build_version_info() {
- // Read version from CARGO_PKG_VERSION (inherited from workspace Cargo.toml)
- let version = env!("CARGO_PKG_VERSION");
-
- // Get git commit hash (first 9 characters)
- let commit_hash = Command::new("git")
- .args(["rev-parse", "--short=9", "HEAD"])
- .output()
- .ok()
- .and_then(|output| {
- if output.status.success() {
- String::from_utf8(output.stdout).ok()
- } else {
- None
- }
- })
- .map(|s| s.trim().to_string())
- .unwrap_or_else(|| "unknown".to_string());
-
- // Get date from git commit, fallback to current date
- let date = Command::new("git")
- .args(["log", "-1", "--format=%ad", "--date=format:%Y-%m-%d"])
- .output()
- .ok()
- .and_then(|output| {
- if output.status.success() {
- String::from_utf8(output.stdout).ok()
- } else {
- None
- }
- })
- .map(|s| s.trim().to_string())
- .unwrap_or_else(|| chrono::Local::now().format("%Y-%m-%d").to_string());
-
- let version_string = format!("mling {version} ({commit_hash} {date})");
-
- let out_dir = Path::new(&std::env::var("CARGO_MANIFEST_DIR").unwrap())
- .join("src")
- .join("helps")
- .join("version.txt");
-
- std::fs::write(&out_dir, version_string).expect("failed to write version.txt");
-
- println!("cargo::rerun-if-changed=../Cargo.toml");
- println!("cargo::rerun-if-changed=../Cargo.lock");
- println!("cargo::rerun-if-changed=.git/HEAD");
-}
-
-fn build_completion() {
- build_comp_scripts("mling").unwrap();
-}