Yannik Sander
Yannik Sander
#324 adds support to search packages and options from a set of flakes Additionally we might want to search for flake repositories themselves, de-facto standardized attributes (i.e. `flake#lib.*`) and apps...
It seems like this is due the the markdown transition in nixpkgs: option descriptions may now look like `{"_type":"mdDoc","text":"..."}`, which does not deserialise to `Option`. This was not supposed to...
New deployments override the currently active one, making previous revisions inaccessible. Github supports setting `auto_inactive = false` to avoid that. I think this is useful, since Netlify creates permalinks for...
Just a quality of life thing. Nearly everyone using our tool tires to run `prog help` and `prog help subcommand`. I added a subcommand myself like this: ```rust #[derive(Debug, Bpaf,...
Doc comments on external argument structs can't be overridden by the using parser. When splitting the possible arguments of a command into sub-structs, i would like to document the structs...
When defining adjacent parsers for mutli value options as described [in the docs](https://docs.rs/bpaf/latest/bpaf/_documentation/_3_cookbook/_04_multi_value/index.html), the generataed help messages seem a bit misaligned: parser ```rust #[derive(Debug, Clone, Bpaf)] #[bpaf(options)] pub struct Options...
Most unix utilities require valid arguments passed to them, even in the presence of `--help` or `--version`, e.g. git: ``` $ git --badarg --version unknown option: --badarg usage: git [-v...
First off, I'm trying to create a Group with a _compact listing_ of subcommands, e.g.. ``` Usage: flox [[-v]... | -q] [--debug]... [COMMAND ...] Some Group search search packages in...
It would be great if for derived Parsers we could access the derived parser function from the type directly. ``` #[derive(Bpaf)] struct Abc { ... } abc().run() // or ::parser().run()...
When defining tuple enum variants the bpaf configuration (and doc comment) have to be set inside the tuple, on the tuple values. For single value tuples that's annoying and brakes...