From a80ac42e70c9194db91ebbfe9600db443e88ac5f Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 7 Aug 2026 12:52:46 +0800 Subject: chore: move CLI entry to bin and restructure imports Move the CLI binary from `src/main.rs` to `src/bin/cli.rs` and move shared program generation into a new lib.rs module. --- mingling_cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mingling_cli/Cargo.toml') diff --git a/mingling_cli/Cargo.toml b/mingling_cli/Cargo.toml index fbc5adf..071c9e8 100644 --- a/mingling_cli/Cargo.toml +++ b/mingling_cli/Cargo.toml @@ -17,7 +17,7 @@ path = "src/bin/wrapper.rs" [[bin]] name = "mingling-cli" -path = "src/main.rs" +path = "src/bin/cli.rs" [dependencies.mingling] path = "../mingling" -- cgit