Boscop
Boscop
Would it be possible to support tuples of iterators? (Basically doing it per tuple component.) So that this would work: 
I'm using multiqueue::broadcast_queue in a situation where I spawn a new thread for each websocket client and call add_stream() for each before spawning the thread, so it gets moved into...
I want to use the [webview](https://github.com/zserge/webview) library to write a desktop app (similar use case as embedding libwebkit) and with this library, whenever the state in the host program changes,...
At my company we have to support old browsers, especially IE. What are the lowest versions of the major browsers that are supported by Halogen?
How can I make the strings logged with `console.log()` appear on stdout, and `console.error()` on stderr? Or any of those on either stdout or stderr?
Please automatically add `--version` to print program version: `env!("CARGO_PKG_VERSION")`. Also I think it'd make sense if `--help` prints the version as well.
Currently, passing `-h` doesn't work: > Unrecognized argument: -h Passing `-h` should work the same as `--help`, unless one of the options/switches uses `short = 'h'`. --- And in the...

I would really like to be able to do the following: ``` prog cmd1 cmd2 ``` Because my program needs to have a CLI to run commands seq sequentially, without...
Is it possible to allow switch chaining like `-vv` for verbosity? With this ```rust /// verbosity level #[argh(switch, short = 'v')] verbosity: u8, ``` it only allows `-v -v`, not...