Robert Winslow

Results 24 issues of Robert Winslow

I am excited by this project, it looks great so far! Do you have any thoughts about how this compares to [Prusti](https://github.com/viperproject/prusti-dev)?

Reach parity with C++, Java, etc.

help wanted
rust
good-first-contribution
not-stale

To reduce memory allocations, I'm trying to use bumpalo to create my own Boxed futures type. I'm basing this off of an idiom present in the futures crate: ```rust type...

Is there a recipe for creating an Rc with bumpalo? I'm trying to avoid the heap allocation(s) that happen inside of Rc. (For reference, using the `Rc::from_box` function still appears...

Would it be feasible to have the bumpalo Vec type work with serde? That way we can handle deserializing variable length sequences of references to borrowed data. That would be...

enhancement

Is it possible to leave all strings escaped? For example, in a Visitor, I would like the following JSON to invoke the following Visitor calls: ```json {"abc\"def": "012\"345"} ``` ```rust...

support

I have many JSON payloads (byte slices) that I wish to deserialize. Because they are wrapped in a framing format, it would be awkward or impossible to use one StreamDeserializer...

Following up from issue https://github.com/rust-rocksdb/rust-rocksdb/issues/335, I need to know if rocksdb will start working again on nightly at some point. Thanks!

It would be useful to have built-in serde support for storing and retrieving bitmaps from this library. Could the existing serialization functions be used to implement this efficiently?

Would it be feasible to raise the MAX_THREADS limit? Perhaps it can by a typenum provided as a type parameter of the runtime, or a crate-level config variable? I need...