Ross Williams
Ross Williams
I should be able to look at these this weekend. Thanks!
Requested changes pushed. Sorry I lost track of wrapping this up in the last few months of the year. Nothing going on in November or December... nothing else at all....
Thanks for pointing this out. I’ll rethink and rework.
This is an over-complicated solution to a pretty simple problem. I posted my detailed comments on the issue: https://github.com/wbthomason/packer.nvim/issues/1100#issuecomment-1657036413.
@reitermarkus, this is really exciting because it would resolve [a downstream bug I ran into with `bssl-sys`](https://bugs.chromium.org/p/boringssl/issues/detail?id=636). The review comments above looked positive, any idea when it might be merged?
> If you are a maintained project and your dependency has not been updated, then a fork of the dependency seams like the honest way to do things. While re-reading...
Throwing up a diagram here for discussion; feel free to quote and edit: ```mermaid classDiagram class Queue~T~ { len() usize is_empty() bool available() isize push(T) pop() T try_pop() Option~T~ }...
I don't like returning `Option` because it would be a breaking change, just to add traits, and it's annoying to have to unwrap the capacity on every call. I like...
Been sketching an implementation of this, and remembering that async functions in traits imply having to make some choices: 1. Adopt a MSRV of 1.75 for the next release and...
Well, as of git 2.31 (unreleased), [git will allow passing configuration options via environment variables](https://github.com/git/git/commit/d8d77153eafdb0fc334e827976f09e4bdff26b58) (see also, [on Stack Overflow](https://stackoverflow.com/a/65963666)). But that's pretty bleeding edge. 😐 Looking at `ports.sh`, I...