quininer

Results 189 comments of quininer

We need to implement `Deserializer` trait for `Value`, which shouldn't be hard. but I don't have time to implement it in short term. Welcome PR :)

This is a ci issue, but we don't have manpower to fix it at the moment.

If you want musl compatibility, there is no need to switch to `rustix_uring`, just use `linux-raw-sys` (or any other linux headers library) with `io_uring`. like ```rust use io_uring::opcode; use linux_raw_sys::general::statx;...

It became too big and too intrusive for me. i believe there is a non-intrusive way to handle it. like ```rust struct ComputeHeavy { source: F, prepare: P, execute: Option...

You can also create new IoUring instances for specific test cases.

@cpu tokio-rustls is not affected by https://github.com/tokio-rs/tls/issues/40 . Any split stream based on rustls must be locked until rustls support full-duplex mode. https://github.com/rustls/rustls/issues/288

This looks good, would you like to add a test?

1. IORING_FEAT_FAST_POLL is a feature flag, not a setup flag. if you think it needs "support", you may have misunderstood. see https://docs.rs/io-uring/latest/io_uring/struct.Parameters.html#method.is_feature_fast_poll 2. We do support [direct syscalls](https://github.com/tokio-rs/io-uring/blob/master/Cargo.toml#L22), and syscalls...