diff --git a/Cargo.toml b/Cargo.toml index a83d843..a54c6b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,9 @@ [package] name = "qt-ts-tools" -author = "Alexandre Leblanc" +authors = ["Alexandre Leblanc "] +repository = "https://github.com/mrtryhard/qt-ts-tools" +keywords = ["qt", "translation"] +homepage = "https://github.com/mrtryhard/qt-ts-tools" license = "Apache-2.0" version = "0.1.0" edition = "2021" diff --git a/src/sort.rs b/src/sort.rs index a6ea369..5cebb94 100644 --- a/src/sort.rs +++ b/src/sort.rs @@ -6,6 +6,7 @@ use std::io::{BufWriter, Write}; #[derive(Args)] pub struct SortArgs { pub input_path: String, + #[arg(short, long)] pub output_path: Option, }