Kane York

Results 74 comments of 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. ![screenshot 2018-11-25 at 6 06 42 pm](https://user-images.githubusercontent.com/627891/48989165-d95d2900-f0dd-11e8-8246-57957731f52a.png)

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 }...