Skip to content

Commit 134f1ea

Browse files
Cargo Fix
1 parent be1f47d commit 134f1ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ fn main() {
7373
.takes_value(false),
7474
)
7575
.get_matches();
76-
let mut compile = matches.is_present("compile");
77-
let mut hard = matches.is_present("hard");
78-
let mut run = matches.is_present("run");
79-
let mut dev = matches.is_present("dev");
76+
let compile = matches.is_present("compile");
77+
let hard = matches.is_present("hard");
78+
let run = matches.is_present("run");
79+
let dev = matches.is_present("dev");
8080
let mut file: String = String::new();
8181
if matches.is_present("INPUT") || run {
8282
file = matches.value_of("INPUT").unwrap().to_string();

0 commit comments

Comments
 (0)