Élie ROUDNINSKI

Results 25 issues of Élie ROUDNINSKI

It would be nice to integrate some form of code coverage now that the compiler supports source-based code coverage: https://blog.rust-lang.org/inside-rust/2020/11/12/source-based-code-coverage.html

Hello @jeromefroe and sorry to bother you! I have been looking for an LRU cache with O(1) operations and found your crate but decided as an exercise to implement my...

As explained in the title, when resolving a schema on Python version (< 3.6) where dict implementation does not keep key insertion ordering, the object key order can be lost....

Enhancement

Hello and thank you for this useful crate :+1: According to RFC3339 https://datatracker.ietf.org/doc/html/rfc3339#section-5 Months should be zero-padded to the left for up to 2 digits. Current stable version 0.4.19 will...

Hello! I am very new to the wasm ecosystem and trying a bit all the tools/framework/runtime out there. I am working on porting https://github.com/cloudflare/sliceslice-rs to wasm. That project requires simd...

Hello and thank you for your work! I am working on a project that uses a capnproto schema where most of the values are mandatory when reading a message. I...

For similar reasons as explained in https://github.com/capnproto/capnproto-rust/pull/243#discussion_r773027692, I need an owned version of `ScratchSpaceHeapAllocator`. Here is my proposal for a growing and owned segments allocator: ```Rust use capnp::message::{Allocator, HeapAllocator}; use...

Hello! Currently `capnp::struct_list::Reader::get` can panic if the index is out of bounds because of an assertion at https://docs.capnproto-rust.org/src/capnp/struct_list.rs.html#84 This is rather unexpected as the documentation doesn't say so and the...

#26 lead to a very interesting discussion where it was brought up that in some cases `sliceslice` is substantially slower than `memchr::memmem`. We should investigate why, decide if this is...