aboutsummaryrefslogtreecommitdiff
path: root/mling
diff options
context:
space:
mode:
Diffstat (limited to 'mling')
-rw-r--r--mling/src/cli.rs5
-rw-r--r--mling/src/proj_mgr/generator.rs2
-rw-r--r--mling/src/proj_mgr/show_binaries.rs4
-rw-r--r--mling/src/proj_mgr/show_directories.rs6
4 files changed, 10 insertions, 7 deletions
diff --git a/mling/src/cli.rs b/mling/src/cli.rs
index 67d2ef0..69e4fe9 100644
--- a/mling/src/cli.rs
+++ b/mling/src/cli.rs
@@ -1,3 +1,6 @@
+// `mling` has not been replaced from `parser` to `picker` yet
+#![allow(deprecated)]
+
use crate::{
CMDCompletion, ErrorDispatcherNotFound, Next, ThisProgram,
display::markdown,
@@ -8,7 +11,7 @@ use crate::{
};
use colored::Colorize;
use mingling::{
- Groupped, Program, RenderResult,
+ Grouped, Program, RenderResult,
hook::ProgramHook,
macros::{chain, help, pack, program_setup, renderer},
res::ResExitCode,
diff --git a/mling/src/proj_mgr/generator.rs b/mling/src/proj_mgr/generator.rs
index 4f965d9..f0dbdd7 100644
--- a/mling/src/proj_mgr/generator.rs
+++ b/mling/src/proj_mgr/generator.rs
@@ -1,7 +1,7 @@
use std::path::{self, PathBuf};
use mingling::{
- Groupped, RenderResult,
+ Grouped, RenderResult,
macros::{chain, pack, renderer, route},
};
use std::io::Write as _;
diff --git a/mling/src/proj_mgr/show_binaries.rs b/mling/src/proj_mgr/show_binaries.rs
index 9d5caf0..4fb5c28 100644
--- a/mling/src/proj_mgr/show_binaries.rs
+++ b/mling/src/proj_mgr/show_binaries.rs
@@ -2,7 +2,7 @@ use std::path::PathBuf;
use colored::Colorize;
use mingling::{
- Groupped, RenderResult,
+ Grouped, RenderResult,
macros::{chain, pack, renderer},
};
use serde::Serialize;
@@ -17,7 +17,7 @@ use crate::{
res::ResManifestPath,
};
-#[derive(Serialize, Groupped)]
+#[derive(Serialize, Grouped)]
pub struct ResultBinaries {
pub binaries: Vec<DataBinary>,
}
diff --git a/mling/src/proj_mgr/show_directories.rs b/mling/src/proj_mgr/show_directories.rs
index 7d7c074..5c5f448 100644
--- a/mling/src/proj_mgr/show_directories.rs
+++ b/mling/src/proj_mgr/show_directories.rs
@@ -1,6 +1,6 @@
use colored::Colorize;
use mingling::{
- Groupped, RenderResult,
+ Grouped, RenderResult,
macros::{chain, pack, renderer},
};
use serde::Serialize;
@@ -12,12 +12,12 @@ use crate::{
res::ResManifestPath,
};
-#[derive(Serialize, Groupped)]
+#[derive(Serialize, Grouped)]
pub struct ResultWorkspaceDirectory {
pub path: String,
}
-#[derive(Serialize, Groupped)]
+#[derive(Serialize, Grouped)]
pub struct ResultTargetDirectory {
pub path: String,
}