aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/about.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart/src/commands/about.rs')
-rw-r--r--crates/mozart/src/commands/about.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/crates/mozart/src/commands/about.rs b/crates/mozart/src/commands/about.rs
index 1dd6b85..04c3aa1 100644
--- a/crates/mozart/src/commands/about.rs
+++ b/crates/mozart/src/commands/about.rs
@@ -1,7 +1,6 @@
use clap::Args;
use mozart_core::MOZART_VERSION;
use mozart_core::console;
-use mozart_core::console_format;
use mozart_core::console_writeln;
#[derive(Args)]
@@ -14,11 +13,9 @@ pub async fn execute(
) -> anyhow::Result<()> {
console_writeln!(
console,
- &console_format!(
- r#"<info>Mozart - Dependency Manager for PHP - version {MOZART_VERSION}</info>
+ r#"<info>Mozart - Dependency Manager for PHP - version {MOZART_VERSION}</info>
<comment>Mozart is a dependency manager tracking local dependencies of your projects and libraries.
-See https://getcomposer.org/ for more information.</comment>"#
- ),
+See https://getcomposer.org/ for more information.</comment>"#,
);
Ok(())
}