Crystal Durham

Results 508 comments of Crystal Durham

A small revision to the suggested expansion: ```rust #[cfg(feature = "unstable-risky-function")] pub fn risky_function() { impl_body!() } #[cfg(not(feature = "unstable-risky-function"))] pub(crate) fn risky_function() { impl_body!() } #[cfg(all(feature = "unstable-risky-function", not(allow_crate_unstable))]...

There's not much we can do about it, except maybe check `$TRAVIS_SUDO` and give a warning about Travis/#9061. As far as I can tell from discussion of the change, the...

... oops, didn't fix the nonwindows cfg. Had to go afk after submitting this but I'll fix that when I get back.

Potential alternative name: `#[linkme::injected]`. With that name I'd consider it important to work for `fn` items directly. I can't think of a good way to directly link some `static` and...

Additional note: having these traits in the prelude (although probably `as _`) could resolve many cases of the "cannot call method on type {integer}" error, since name resolution would select...

> don't forget [...] `usize`/`isize` Added those to the ACP and the draft PR, as well as a few that were already available in the PR but not the ACP....

(drive-by interested and semi-informed user with Opinions) For what it's worth, [Pandoc](https://pandoc.org/) uses a document IR model to great effect, and that's what enables Pandoc's claim to being a universal...

Why me? 😛 Is it just because I jumped ship from windows-msvc to -gnu? Sure, I'm a CI guy but you already have that set up! Happy to help though!...

I see that the upstream LLVM patch has landed. Is there documentation of how to build a local version of the compiler against a development LLVM so I could potentially...

I don't think I'm going to bother adding any new helpers until std stabilizes them, but I'd be happy to accept and publish them from a PR under an `unstable-*`...