Jake Goulding
Jake Goulding
2.5.1 appears to have been released, but it's difficult to see exactly what changed without either of these artifacts. It *appears* to be [this diff](https://github.com/liady/webpack-node-externals/compare/23c124af73388ade75e3177e3a845e62a7c2698b...b21c8c05da8c7ef02f1f81469a2fcc93a8425c69).
```rust macro_rules! generate_the_struct { ($a:literal) => { pub struct Struct { #[clap( long = "--alpha-beta-gamma", env = "ALPHA_BETA_GAMMA", default_value = $a, )] alpha_beta_gamma: usize, } }; } ``` The arguments...
```rust /// a. {this_is_not_ok} #[derive(argh::FromArgs)] struct Demo { /// b. {nor_is_this} #[argh(option)] value: u8, } ``` ```toml [dependencies] argh = "0.1.7" ``` ``` error: there is no argument named `this_is_not_ok`...
Not sure what version to show off hand... maybe none?
We only generate and commit a Cargo.toml file, but as the crate graph gets larger, we are more and more likely to fail for a crate being yanked.
> After execution, the output could be put under a heading. Usually headings are the best way to navigate a page
TL;DR: We use the top 100 crates based on all time downloads to avoid being arbiters of what crates are available. If you think that a "popular" crate should be...
# Bug Report ## Describe the bug When a middleware is used, Rails actions are invoked twice for every Reflex action. ## To Reproduce Add a middleware: ```ruby class DummyMiddleware...