diff options
Diffstat (limited to 'mling')
| -rw-r--r-- | mling/Cargo.toml | 2 | ||||
| -rw-r--r-- | mling/src/cli.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mling/Cargo.toml b/mling/Cargo.toml index e73fe02..4954320 100644 --- a/mling/Cargo.toml +++ b/mling/Cargo.toml @@ -22,7 +22,7 @@ path = "src/bin/mling.rs" mingling = { path = "../mingling", features = [ "parser", "comp", - "general_renderer", + "structural_renderer", "extra_macros", "yaml_serde_fmt", ] } diff --git a/mling/src/cli.rs b/mling/src/cli.rs index a6d099b..01a836a 100644 --- a/mling/src/cli.rs +++ b/mling/src/cli.rs @@ -12,7 +12,7 @@ use mingling::{ hook::ProgramHook, macros::{chain, help, pack, program_setup, r_println, renderer}, res::ResExitCode, - setup::{ExitCodeSetup, GeneralRendererSetup, HelpFlagSetup, QuietFlagSetup}, + setup::{ExitCodeSetup, StructuralRendererSetup, HelpFlagSetup, QuietFlagSetup}, }; use std::{env::current_dir, path::PathBuf, process::exit, str::FromStr}; @@ -58,7 +58,7 @@ pub fn run() { // Setups program.with_setup(HelpFlagSetup::new(["-h", "--help"])); - program.with_setup(GeneralRendererSetup); + program.with_setup(StructuralRendererSetup); program.with_setup(ExitCodeSetup::default()); program.with_setup(StandardOutputSetup); |
