Andrew Lazarus

Results 53 comments of Andrew Lazarus

Again, prost's config allows you to add type attributes. That seems like it would solve this, no? They recommend you add the serde attributes to the generated structs and it...

This diff is really large :) Mind breaking the "cleanup" commits into a separate PR so we can quickly review and merge them? I think I have many of the...

What are people's thoughts on gitignore-ing all the generated files? I find they cause PRs to be quite a bit larger than they should be. I like to see some...

@tafia Do you have an opinion on gitignoring the generated proto rust files? If you don't object, I'll open a PR.

> Wouldn't it be just replace WriterBackend with std::io::Write and change the use ... at the top? In terms of knowing when to use what, it could be either an...

Question about `ArrayVec`: it looks like you can use Vec in a no_std environment. I don't really know much about it, but this [doc](https://rust-embedded.github.io/book/intro/no-std.html) says you can if you can...

Looks like this can be closed? `no_std` support looks like it was merged separately.

FYI: You can serialize / deserialize protos without length prefixes like this: ```rust let mut buf = Vec::new(); let mut writer = Writer::new(&mut buf); MyMessage::default().write_message(&mut writer)?; let mut reader =...

Results with `x % 51` ``` Comparison: Enumerable#reverse_each + break: 257525.8 i/s Enumerable#reverse.detect: 189938.5 i/s - 1.36x slower Enumerable#select.last: 129624.6 i/s - 1.99x slower ```