quininer
quininer
I think we can look at how chromium is implemented. https://github.com/chromium/chromium/blob/master/net/cert/cert_verify_proc_android.cc https://github.com/chromium/chromium/blob/master/net/cert/cert_verify_proc_ios.cc
The kernel version currently running on ci is too old, preventing many features from being stable. [I fork cross image](https://github.com/quininer/cross-newkernel) at the time to update the kernel, but it's too...
I hope to stabilize more APIs in 0.5. To stabilize a new API, the following conditions must be meet. * Available in the latest stable kernel * Documentation * Test...
```rust loom::lazy_static!{ static ref ID: usize = 0x42; } loom::thread_local!{ static BAR: Bar = Bar; } struct Bar; impl Drop for Bar { fn drop(&mut self) { let _ =...
## Feature Request ### Motivation The currently redirected `Request` will not carry the `Extensions` of original `Request`, which may cause the http client to lose some context. ### Proposal Maybe...
[serde_cbor](https://docs.rs/serde_cbor/0.11.1/serde_cbor/struct.StreamDeserializer.html) and [serde_json](https://docs.rs/serde_json/1.0.64/serde_json/struct.StreamDeserializer.html) provide `StreamDeserializer`, which is quite useful for some journal file.
~~I submitted https://github.com/djkoloski/rust_serialization_benchmark/pull/56 and found that the performance of `cbor4ii` on github actions is worse than `serde_cbor`.~~ I also observed that `cbor4ii` has a greater slowdown than` serde_cbor` when using...
I don't like this hack, but it's a useful feature. https://github.com/serde-rs/json/blob/v1.0.107/src/raw.rs#L294 If serde supports downcast objects, that should allow for a more elegant implementation.
I believe this has very little impact on performance. https://rust.godbolt.org/z/1f1jxM4a7