diff --git a/Cargo.toml b/Cargo.toml index f2a14be..2ef8eeb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "ai" +authors = ["syui"] version = "0.0.1" edition = "2021" +description = "latest@2024-08-04" [dependencies] seahorse = "*" diff --git a/src/main.rs b/src/main.rs index 5646f41..31130ad 100644 --- a/src/main.rs +++ b/src/main.rs @@ -44,6 +44,9 @@ pub mod delete_record; fn main() { let args: Vec = env::args().collect(); let app = App::new(env!("CARGO_PKG_NAME")) + .author(env!("CARGO_PKG_AUTHORS")) + .version(env!("CARGO_PKG_VERSION")) + .description(env!("CARGO_PKG_DESCRIPTION")) .command( Command::new("ai") .alias("a")