Andrew Hickman

Results 36 comments of Andrew Hickman

I've had a go into implementing this and unfortunately I'm not sure its feasible. The issue is that there is no `'static` bound on serializer/deserializer errors meaning any kind of...

I wonder if we should also keep a static `reqwest::Client` / `ureq::Agent` to allow for connection reuse. (If my understanding of the [curl docs](https://everything.curl.dev/libcurl/connectionreuse#easy-api-pool) is right, that's effectively what the...

Do you have an idea of what this would look like? I'm not familiar with what localization libraries exist in rust. I'm open to this if it can be implemented...

That was indeed unintentional, thanks for pointing it out 😄

See https://github.com/AndrewPoyntz/time-ago-pipe/issues/6#issuecomment-313641351

Ah, I didn't realize there was a convention like that. In any case, I think the main issue is just that attributes can get silently ignored. It would be nice...

This should probably be added to the Real trait at the same time

Sounds reasonable, I'd accept a PR that implements this.

+1 for the visitor based approach, I think this ultimately gives the most flexibility for the consumer, and it is consistent with the existing `ServiceGenerator` visitor API.

I've started working on a crate for supporting reflection here https://crates.io/crates/prost-reflect It supports taking a `prost_types::FileDescriptorSet`, inspecting the message types and encoding/decoding them as both bytes and JSON. Currently it...