Niko Matsakis
Niko Matsakis
Each of the code examples has a "run" button that takes you to play -- but if you click them, you just get errors. The code is not in the...
| Metadata | | | --- | --- | | Name | Async fns in traits initiative | | Owner | @tmandry | | Liaison | @joshtriplett | | Proposed...
NLL is finally going to be used by default! I wanted to highlight this achievement and in particular the hard work of a bunch of people. It also gives us...
Since blog post filenames must include the date, and posts often stay in draft form for days, it's easy to merge with the file having the wrong name. It'd be...
It would be nice if cargo can give you warnings when you try to publish a new version of a package that obviously breaks the API of a previous version....
PR https://github.com/rust-lang/chalk/pull/754 tweaked the behavior of recursive solver to do a better job merging multiple results (and in particular to recognize the special case of "always true"), but it did...
As part of rust-analyzer/rust-analyzer#4558, we would like to extend chalk so that it can identify the fn that will run. The basic idea is to model this in a similar...
Introduce support for specialization between impls. Probably best to try and implement the current RFC before considering variations.
The on-demand solver, when faced with an X-clause, currently always selects the "last" literal in the list. This is pretty silly. It would be smarter to look for literals that...
This is a step towards full support for specialization (#9). This particular step sidesteps some of the trickier bits of specialization (in particular, it sidesteps the parts related to regions...