David
David
Output from `cargo +nightly test --all` (nightly ver 1.80) on branch `master` It seems like no crates exist ```rust Finished `test` profile [unoptimized + debuginfo] target(s) in 0.09s Running tests/requires_std.rs...
It seems like adding `extern crate core` and `extern crate enumflags2` does the trick
I'm not sure, I tried googling for "trybuild crate not found" and came up with nothing. Stable 1.76.0 - Fail Stable 1.78.0 - Fail Nightly 1.80.0 - Fail Nightly 1.79.0...
Would prefer it if this could get merged soon so I can stop getting these, heheh 
Great, thanks :)
`clippy::all` is not literally "all" lints, rather it's the lints enabled by default. If you have additional lints enabled, you want to `#[allow]` those as well, or simply slap a...
I don't mind working on this. We can guess the sizes of rust types based on some predefined size and alignment and `#[cfg]` for pointer sizes. A large enough threshold...
Interestingly the eventfd method has 3x less latency than `MSG_RING` (5us vs 15us) despite how simple the code for that op is. Maybe it's the submission path through `io_uring_enter` that...
Is the code already in the tree somewhere? I would like to see what the API is going to look like, if possible. I don't see any new register opcodes...