Chris Beck

Results 22 issues of Chris Beck

In a project, I have to manipulate large aligned arrays of bytes and manipulate them in various ways very quickly. Right now the only way to really do that in...

This is for `alloc` vs. `std` modes compatibility, a code comment explains in detail the purpose of this, which is admittedly subtle. After this commit, builds like ``` ~/cbor$ cargo...

Thanks for this library! Is there any interest from the devs in `no_std` support? We have been using `corepack` as an alternative but it is inferior to `rmp` in a...

M: help wanted

I am looking to use `prost_derive::Oneof` to manually create rust enums that encode/decode to protobuf oneof's. I noticed that this proc macro is nearly undocumented: https://docs.rs/prost-derive/latest/prost_derive/derive.Oneof.html Is this intentional? ---...

Sometimes you have structs that you want to give a custom implementation of Debug, but if you do that then they cannot derive Message which is unfortunate. Would you take...

**Package manager/ecosystem** cargo **Manifest contents prior to update** The file in question is: ``` [package] name = "mc-sgx-epid-types" version = "1.0.0" authors = ["MobileCoin"] description = "EPID FFI types for...

T: bug 🐞
L: rust:cargo

In a relatively recent version of ccache, the hard-coded list of file extensions in `languages.c` was added We have several tools that are written in python and use libclang to...

feature
help wanted

A gap right now is that there is no good way to annotate template types using the `VISITABLE_STRUCT` macro. This may be necessary or desirable if you are using third...

This allows the code to compile if you pass it `&mut dyn RngType`, since trait objects are unsized. See here for an example of caller code that is simplified by...

The `grpcio::env` impl of `Drop` requests that all the completion queues shutdown, but does not actually join the threads. For many applications this works fine, often a webserver does not...