summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-01-14 18:56:11 +0100
committerpml68 <contact@pml68.dev>2025-01-14 18:56:11 +0100
commit47d3f3133293012318ffa82fb411cd9274eac9f8 (patch)
tree6062297ee4e7532df9b66c6d303240ff751b3792
parentfeat: add iced_custom_highlighter (diff)
downloadiced-builder-47d3f3133293012318ffa82fb411cd9274eac9f8.tar.gz
style: remove pkg name and author from version output
-rw-r--r--src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index e5a2674..3a52deb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -36,8 +36,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
.unwrap_or_default();
if version {
- println!("{} ({})", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION"));
- println!("by {}", env!("CARGO_PKG_AUTHORS"));
+ println!("{}", env!("CARGO_PKG_VERSION"));
println!("{}", env!("CARGO_PKG_REPOSITORY"));
return Ok(());