From d21a66d8876140cc94c9804370b7b4c7ecf7c121 Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Fri, 12 Feb 2021 07:52:46 -0600 Subject: [PATCH] meta --- Cargo.toml | 4 ++++ README.md | 2 ++ src/main.rs | 1 + 3 files changed, 7 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 9a6b723..9a4116e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,10 @@ name = "panorama" version = "0.1.0" authors = ["Michael Zhang "] edition = "2018" +description = "A customizable personal information manager." +repository = "https://git.mzhang.io/michael/panorama" +readme = "README.md" +license = "GPL-3.0-or-later" [workspace] members = ["imap"] diff --git a/README.md b/README.md index f11380a..c58c47a 100644 --- a/README.md +++ b/README.md @@ -15,3 +15,5 @@ Credits ------- IMAP library modified from [djc/tokio-imap](https://github.com/djc/tokio-imap), MIT licensed. + +License: GPLv3 or later diff --git a/src/main.rs b/src/main.rs index f38dc5a..11639b8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -25,6 +25,7 @@ use crate::config::Config; type ExitSender = oneshot::Sender<()>; #[derive(Debug, StructOpt)] +#[structopt(author, about)] struct Opt { /// The path to the log file. By default, does not log. #[structopt(long = "log-file")]