John Nunley

Results 373 comments of John Nunley

Is there any progress on this issue?

Huh, I always thought `AHashMap` was just a typedef.

I like this! Although I'd maybe have a configuration option regarding whether or not to enable this, not only at compile time through features but as an attribute on the...

I'm not sure this is globally portable. This would require a compositor. For X11, at least, it's not guaranteed that a compositor is running at all, meaning that you would...

Here's a small, maybe naive, idea. Considering how #73394 was used to "pseudo-stablize" #64490, what if we had a macro that wrapped around `box` syntax? For instance: ``` #[allow_internal_unstable(box_syntax)] macro_rules!...

Seconding. With `dashmap`'s impressive speeds, having an interface to another language would be a boon.

I'd prefer `hashbrown` here, if not only for the prospect of future `no_std` support

Any status on this? It would be nice to be able to use this.

Is there any discernible benefit to using `pin-project-lite` instead of `pin-project`? ~~Don't quote me on this, but I think some of `pin-project`s unique features are used in `tracing`~~ Dont think...

I don't believe that there's a way to implement `FromRawFd` on `UnixStream` without introducing a potential panic. Given that smol-rs/async-net#21 introduces a way to convert an `OwnedFd` to a `UnixStream`...