Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Replace argparse with structopt | Robin Krahl | 2020-01-07 |
| | | | | | | | | | | | | This patch changes the argument handling code to use structopt instead of argparse using the data structures we introduced in the last patch. As part of that transition we replace the old Error::ArgparseError variant with ClapError that stores a structopt::clap::Error. Because of that replacement, the format of the help messages changed, breaking some of the tests. Hence, this change adapts them accordingly. Also clap currently prints the version output to stdout, so we ignore the version_option test case for now. | ||
* | Add structopt dependency in version 0.3.7 | Daniel Mueller | 2020-04-04 |
| | | | | | This patch series replaces argparse with structopt in the argument handling code. As a first step, we need structopt as a dependency. | ||
* | Move nitrocli source code into repository root | Daniel Mueller | 2020-04-04 |
Now that all vendored dependencies have been removed, this change moves the program's source code from the nitrocli/ directory into the root of the repository. |