Kane York
Kane York
The MSRV is high enough that `#[non_exhaustive]` can be used now, right?
Which of the following spellings should be preferred: `cargo test --compile-time-deps` or `cargo build --cfg=test --compile-time-deps` ? If the latter, I think it's clear that this is a flag that...
wasm is a well-known architecture where function pointers are in a different address space from data pointers (they're table indices) despite being the same size.
The PR description has a broken link, fixed: https://internals.rust-lang.org/t/stack-aligment-in-a-callback-function/20509 (dropped the 9 on the end)
Alternatives to consider: - Adjust the `extern "*-interrupt"` ABIs, and `extern "C"+stdcall+fastcall+etc` on x86 + msvc, to always perform stack realignment.
Addressed by #30 _Sent via Hubroid_
Another thing I forgot to mention - there might be multiple frontend URLs for the same object (e.g. pleroma, /users/1234 and /users/name, or a /print URL, etc) but typically only...
actually, this should only apply to the test runner phase, right? We still want maximum parallel during the build of the tests.
Accidentally made a UI mockup for this. 
I think that CDX functionality doesn't really fit well in this package, so I designed a different interface. How does this look? ```go type flusher interface { Flush() error }...