Aaron Hill
Aaron Hill
**Is your feature request related to a problem? Please describe.** The current unix implementation of `tokio::process` relies on handling `SIGCHLD` signals. This requires that the corresponding signal handler be properly...
PR https://github.com/rust-lang/rust/pull/66431 was merged as part of a rollup. After the merge, bors commented that the PR was 'made unmergeable' due to the rollup PR. This is a pretty useless...
I'd appreciate it if you could make a new point release containing https://github.com/webdesus/fs_extra/pull/38. This would help in evaluating the prevalence of macro trailing semicolons in the Rust ecosystem, as I'll...
The section on incremental compilation mentions 're-running' a query when one of its inputs is red. We should describe this process ("recovery") in detail. In particular, we should note that...
This PR adds a subsection to the 'Syntax and AST' section describing inert vs active attributes. For consistency, I've also updated the '#[test] implementation' page to stop referring to `#[test]'...
The incremental compilation infrastructure has special handling for diagnostics - we capture any diagnostics emitted during query execution, and then re-emit them if the result is loaded from disk. We...
The `ToTokens` impl for `Generics` does not tokenize the contained `WhereClause` - instead, any items which contain a `Generics` (e.g. `ItemStruct`) explicitly tokenize the `WhereClause` in the correct position. This...
Currently, `only_hack_old_rustc` must be manually enabled at the definition site. However, any crates that add a dependency on `proc-macro-hack` (because they want to support older versions of `rustc`) probably want...
The Minecraft command `/execute ` can be used to execute `command` for every entity matched by `selector`. However, any Sponge command provided as `command` has no way of retrieving the...
Currently, `Explosion#getSourceExplosive` returns an `Optional`. However, mod-created `Explosion`s can and do use store custom entities in the Minecraft `Explosion.exploder` field. Since these custom entities do not implement our `Explosive` interface,...