meta
This commit is contained in:
parent
9f744785f2
commit
d21a66d887
3 changed files with 7 additions and 0 deletions
|
@ -3,6 +3,10 @@ name = "panorama"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Michael Zhang <mail@mzhang.io>"]
|
authors = ["Michael Zhang <mail@mzhang.io>"]
|
||||||
edition = "2018"
|
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]
|
[workspace]
|
||||||
members = ["imap"]
|
members = ["imap"]
|
||||||
|
|
|
@ -15,3 +15,5 @@ Credits
|
||||||
-------
|
-------
|
||||||
|
|
||||||
IMAP library modified from [djc/tokio-imap](https://github.com/djc/tokio-imap), MIT licensed.
|
IMAP library modified from [djc/tokio-imap](https://github.com/djc/tokio-imap), MIT licensed.
|
||||||
|
|
||||||
|
License: GPLv3 or later
|
||||||
|
|
|
@ -25,6 +25,7 @@ use crate::config::Config;
|
||||||
type ExitSender = oneshot::Sender<()>;
|
type ExitSender = oneshot::Sender<()>;
|
||||||
|
|
||||||
#[derive(Debug, StructOpt)]
|
#[derive(Debug, StructOpt)]
|
||||||
|
#[structopt(author, about)]
|
||||||
struct Opt {
|
struct Opt {
|
||||||
/// The path to the log file. By default, does not log.
|
/// The path to the log file. By default, does not log.
|
||||||
#[structopt(long = "log-file")]
|
#[structopt(long = "log-file")]
|
||||||
|
|
Loading…
Reference in a new issue