use structopt::StructOpt;
use serde_derive::Deserialize;
#[derive(Debug, StructOpt, Deserialize)]
#[structopt(name = "cargo merge", about = "Merges the source code of a crate into a single file")]
pub struct Opts {
#[structopt(short = "s", long="silence-standard-error-output")]
pub remove_error_output: bool,
#[structopt(short = "d", long="debug")]
pub debug: bool,
}