You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.about("Execute <script> as a literal expression and display the result.")
@@ -166,23 +164,23 @@ fn parse_args() -> Args {
166
164
.long("dep")
167
165
.short('d')
168
166
.takes_value(true)
169
-
.multiple_values(true)
167
+
.multiple_occurrences(true)
170
168
.number_of_values(1)
171
169
)
172
170
.arg(Arg::new("dep_extern")
173
171
.about("Like `dep`, except that it *also* adds a `#[macro_use] extern crate name;` item for expression and loop scripts. Note that this only works if the name of the dependency and the name of the library it generates are exactly the same.")
174
172
.long("dep-extern")
175
173
.short('D')
176
174
.takes_value(true)
177
-
.multiple_values(true)
175
+
.multiple_occurrences(true)
178
176
.requires("expr_or_loop")
179
177
)
180
178
.arg(Arg::new("extern")
181
179
.about("Adds an `#[macro_use] extern crate name;` item for expressions and loop scripts.")
0 commit comments