From 7b326ee9f51f7a8f4d93a5d0e3bb00462045f7cf Mon Sep 17 00:00:00 2001 From: Vincent Flyson Date: Fri, 23 Aug 2019 14:44:16 -0400 Subject: [PATCH] Add robatipoor to list of authors --- Cargo.toml | 5 ++++- src/main.rs | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f841eca..7b6acc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "monolith" version = "2.0.4" -authors = ["Sunshine "] +authors = [ + "Sunshine ", + "Mahdi Robatipoor ", +] description = "CLI tool to save webpages as a single HTML file" [dependencies] diff --git a/src/main.rs b/src/main.rs index 1492e9e..2ab9e97 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,7 +9,7 @@ use monolith::http::{is_valid_url, retrieve_asset}; fn main() { let command = App::new("monolith") .version(crate_version!()) - .author(crate_authors!()) + .author(crate_authors!("\n")) .about(crate_description!()) .arg( Arg::with_name("url")