Nick Cameron
Nick Cameron
Allow multiple layers of workspaces, not just one. This would be useful for tools in the Rust repo, and I think more generally.
The larger the scope of code handled by an error handler, the more fragile that code is
I'm using this issue to collect feedback from various places after initial publication
I want to add some case studies to the error design section. Ideas: * compiler/parser errors * a prototype library * a library with network client or something * a...
Talk about failpoints (and alternatives) in the testing section. Probably should reference the fail crate (https://docs.rs/fail/latest/fail/). I'm not actually sure failpoints are always the best solution, so this should be...
Improve the RFC template by adding more metadata, making the structure more flexible, and tweaking some wording. Note that this proposal uses the proposed template as a bootstrap example. [Rendered](https://github.com/nrc/rfcs/blob/template/text/0000-rfc-template.md)
We shouldn't require types for consts and statics unless necessary. `const FOO = "foo";` or `static bar = 42;` should just work. I propose that we try to infer based...
Proposed API for vectored reads with uninitialized memory. The major contribution is BorrowedSliceBuf and BorrowedSliceCursor which extend the BorrowedBuf/BorrowedCursor API to slices of slices for vectored IO. [libs-api ACP](https://github.com/rust-lang/libs-team/issues/104) [Accepted]
We could simplify Rustup a lot. It was built with some very ambitious goals and it is clear that some of things will never happen, but the code is designed...
PR #136 seems to have broken Highfive on the server. The only relevant info in the logs is: ``` End of script output before headers: newpr.py ``` The web server...