diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-07 02:25:27 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-07 02:25:27 +0800 |
| commit | 81528b273c18693ebd3f05c6f8057ff8e632f4a0 (patch) | |
| tree | 85026c27535337c0123d4650c844ae364bc9780a /mling/Cargo.toml | |
| parent | e41e8bda221b44d09d7e93ffc43675147ab60a6d (diff) | |
Refactor mling to use new program architecture and install scripts
Diffstat (limited to 'mling/Cargo.toml')
| -rw-r--r-- | mling/Cargo.toml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/mling/Cargo.toml b/mling/Cargo.toml index df9c675..a08c8d5 100644 --- a/mling/Cargo.toml +++ b/mling/Cargo.toml @@ -11,8 +11,12 @@ keywords = ["cli", "scaffolding", "command-line", "framework"] categories = ["command-line-interface"] [[bin]] +name = "cargo-mling" +path = "src/bin/mling.rs" + +[[bin]] name = "mling" -path = "src/main.rs" +path = "src/bin/mling.rs" [dependencies] mingling = { path = "../mingling", features = [ @@ -21,6 +25,7 @@ mingling = { path = "../mingling", features = [ "comp", "general_renderer", "extra_macros", + "dispatch_tree", ] } serde = { version = "1", features = ["derive"] } @@ -32,4 +37,5 @@ just_fmt = "0.1.2" toml.workspace = true [build-dependencies] -mingling = { path = "../mingling", features = ["comp"] } +chrono = "0.4" +mingling = { path = "../mingling", features = ["comp", "builds"] } |
