aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/flags.rs
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src/flags.rs')
-rw-r--r--xtask/src/flags.rs9
1 files changed, 2 insertions, 7 deletions
diff --git a/xtask/src/flags.rs b/xtask/src/flags.rs
index 34e447c2f..69b3cb9c1 100644
--- a/xtask/src/flags.rs
+++ b/xtask/src/flags.rs
@@ -36,8 +36,7 @@ xflags::xflags! {
36 optional --dry-run 36 optional --dry-run
37 } 37 }
38 cmd dist { 38 cmd dist {
39 optional --nightly 39 optional --client-patch-version version: String
40 optional --client version: String
41 } 40 }
42 cmd metrics { 41 cmd metrics {
43 optional --dry-run 42 optional --dry-run
@@ -84,9 +83,6 @@ pub struct Install {
84} 83}
85 84
86#[derive(Debug)] 85#[derive(Debug)]
87pub struct Lint;
88
89#[derive(Debug)]
90pub struct FuzzTests; 86pub struct FuzzTests;
91 87
92#[derive(Debug)] 88#[derive(Debug)]
@@ -101,8 +97,7 @@ pub struct Promote {
101 97
102#[derive(Debug)] 98#[derive(Debug)]
103pub struct Dist { 99pub struct Dist {
104 pub nightly: bool, 100 pub client_patch_version: Option<String>,
105 pub client: Option<String>,
106} 101}
107 102
108#[derive(Debug)] 103#[derive(Debug)]