Closed marcospb19 closed 4 years ago
Replacing app with create_app.
All tools use: let matches = cli::create_app().get_matches();
let matches = cli::create_app().get_matches();
.template had: let matches = cli::app().get_matches();
let matches = cli::app().get_matches();
Which caused compilation errors.
bors r+
Build succeeded:
Replacing app with create_app.
All tools use:
let matches = cli::create_app().get_matches();
.template had:
let matches = cli::app().get_matches();
Which caused compilation errors.