quicli
quicli copied to clipboard
Quickly build cool CLI apps in Rust.
The API has changed so this also updates its usage.
After I finished the thumbnail tutorial, I tried to test it and got this error ``` Error: No files match pattern `rust_memes/*` ``` After seeing that, I progressively commented out...
I think this is caused by https://github.com/rust-lang-nursery/failure/issues/258 and https://github.com/rust-lang-nursery/failure/issues/110, but I thought it worth mentioning, as I hit this upgrading from quicli 0.3 to 0.4. I'm not sure there's anything...
My crate [`read_input`](https://crates.io/crates/read_input) seems to line up well with the aims of `quicli`. It helps make CLI tools quicker and easier to make. It would be awesome if it could...
Related to #90
As it is right now, the `-vvv` enables logging only for the main crate. For some use-cases, the ability to log everything would make more sense. Any way to achieve...
It will be great if I could just set some flag and callback to get an ability to read from stdin and write to stdout.
I love `quicli`, here is a suggestion on how to improve it (in the form of a PR). Since we control the main method, there is no way that the...
What are typical regex use case in a CLI app? Should use (and ideally wrap all regexs in ) but sadly cannot provide `std::matches` and `std::replace` as `std` already defines...