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.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/xtask/src/flags.rs b/xtask/src/flags.rs
index f80a5dd16..69b3cb9c1 100644
--- a/xtask/src/flags.rs
+++ b/xtask/src/flags.rs
@@ -28,7 +28,6 @@ xflags::xflags! {
28 } 28 }
29 29
30 cmd fuzz-tests {} 30 cmd fuzz-tests {}
31 cmd pre-cache {}
32 31
33 cmd release { 32 cmd release {
34 optional --dry-run 33 optional --dry-run
@@ -62,7 +61,6 @@ pub enum XtaskCmd {
62 Help(Help), 61 Help(Help),
63 Install(Install), 62 Install(Install),
64 FuzzTests(FuzzTests), 63 FuzzTests(FuzzTests),
65 PreCache(PreCache),
66 Release(Release), 64 Release(Release),
67 Promote(Promote), 65 Promote(Promote),
68 Dist(Dist), 66 Dist(Dist),
@@ -88,9 +86,6 @@ pub struct Install {
88pub struct FuzzTests; 86pub struct FuzzTests;
89 87
90#[derive(Debug)] 88#[derive(Debug)]
91pub struct PreCache;
92
93#[derive(Debug)]
94pub struct Release { 89pub struct Release {
95 pub dry_run: bool, 90 pub dry_run: bool,
96} 91}