muttmates 0.1.3

Utility for retrieving email addresses in a mutt compatible format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::path::PathBuf;
use structopt::StructOpt;

#[derive(StructOpt, Debug)]
#[structopt(
    name = "muttmates",
    about = "Utility for retrieving email addresses in a mutt compatible format"
)]
pub struct Opt {
    /// query
    pub query: Option<String>,
    /// file or folder containing your vcf files
    #[structopt(short = "-c", long = "--contacts", parse(from_os_str))]
    pub contacts: Option<PathBuf>,
}