mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 13:21:10 +00:00
Companion PR for https://github.com/paritytech/substrate/pull/6221 (#1213)
* 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:
Generated
+138
-137
File diff suppressed because it is too large
Load Diff
@@ -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)]
|
||||||
|
|||||||
Reference in New Issue
Block a user