From 3904c576f0de26dda3bb94c05d90644c8627e744 Mon Sep 17 00:00:00 2001 From: syui Date: Sun, 4 Aug 2024 08:10:53 +0900 Subject: [PATCH] add cargo toml --- Cargo.toml | 2 ++ src/main.rs | 3 +++ 2 files changed, 5 insertions(+) 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")