| Commit message (Collapse) | Author | Age |
| | |
|
| | |
|
| |
|
|
| |
Also clean up some naming.
|
| |
|
|
|
|
| |
The explicit panic is a conscious decision; clap doesn't have a better way to represent mutually-exclusive options, so we have to use two boolean fields, but it will actually prevent the user from passing both options and triggering that code path. Since it's one of the rare situations where design choices converge on a truly unreachable case, I thought I'd make it easier to discover when I'm wrong and it is actually reachable.
The old logic treated (true, true) like (false, false).
|
| |
|
|
| |
It didn't add much to have our own Result definition, over using `anyhow::Result` directly.
|
|
|
This allows me to stop exporting symbols that were only exported for the purposes of making the CLI work.
This commit makes the minimum version for the next release 0.2.0, as it retires multiple symbols that are part of the lib crate's API in v0.1.x.
|