Pascal Hertleif
Pascal Hertleif
We already have serde and serde-derive, it might make sense to be able to read/write JSON as well.
What is a typical thing in a CLI app where you need to spawn process? What can we add to quicli that would make dealing with subprocess really convenient that...
The structopt derive macro doesn't work unless the current project allows `extern crate structopt;`. This means, user of quicli must `cargo add structopt`, which is not that cool. This is...
Currently the main! macro only generates a very simple wrapper so you can use `?` and get nice process exits. It might be cool to extend it to cover a...
based on #129 as it would otherwise conflict quite easily
- `log` crate: macros with similar syntax to `println` - crate for actual log output -- which one? env_logger?
Add an in-depth chapter that talks about how to - [x] detect if our output is piped into another program (or file) - [x] format output for other programs -...