* Initial commit

Forked at: fc45a8e673
Parent branch: origin/master

* Remove unnecessary Clone derives

* Update Cargo.lock

* Update Cargo.lock again
This commit is contained in:
Cecile Tonglet
2020-06-10 14:59:49 +02:00
committed by GitHub
parent 569b30e813
commit 8662ff7686
2 changed files with 142 additions and 141 deletions
+138 -137
View File
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -19,7 +19,7 @@
use structopt::StructOpt; use structopt::StructOpt;
#[allow(missing_docs)] #[allow(missing_docs)]
#[derive(Debug, StructOpt, Clone)] #[derive(Debug, StructOpt)]
pub enum Subcommand { pub enum Subcommand {
#[allow(missing_docs)] #[allow(missing_docs)]
#[structopt(flatten)] #[structopt(flatten)]
@@ -38,14 +38,14 @@ pub enum Subcommand {
} }
#[allow(missing_docs)] #[allow(missing_docs)]
#[derive(Debug, StructOpt, Clone)] #[derive(Debug, StructOpt)]
pub struct ValidationWorkerCommand { pub struct ValidationWorkerCommand {
#[allow(missing_docs)] #[allow(missing_docs)]
pub mem_id: String, pub mem_id: String,
} }
#[allow(missing_docs)] #[allow(missing_docs)]
#[derive(Debug, StructOpt, Clone)] #[derive(Debug, StructOpt)]
pub struct RunCmd { pub struct RunCmd {
#[allow(missing_docs)] #[allow(missing_docs)]
#[structopt(flatten)] #[structopt(flatten)]
@@ -82,7 +82,7 @@ pub struct RunCmd {
} }
#[allow(missing_docs)] #[allow(missing_docs)]
#[derive(Debug, StructOpt, Clone)] #[derive(Debug, StructOpt)]
pub struct Cli { pub struct Cli {
#[allow(missing_docs)] #[allow(missing_docs)]
#[structopt(subcommand)] #[structopt(subcommand)]