Skip to content

Commit b079037

Browse files
committed
refactor structopt configuration to remove "raw" attribute
this was approach was removed from structopt in TeXitoi/structopt#198
1 parent acb6c3b commit b079037

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ struct Opts {
123123

124124
#[structopt(
125125
help = "Arguments to pass to cargo during tests",
126-
raw(multiple = "true", last = "true"),
126+
multiple = true,
127+
last = true,
127128
parse(from_os_str)
128129
)]
129130
cargo_args: Vec<OsString>,

0 commit comments

Comments
 (0)