Dan Burkert
Dan Burkert
I suspect the bloat may be caused by the `T, P, B` params being different among the different server/client instances. I haven't been able to figure out how to get...
I do have some thoughts on retry strategies. I think the strategy @hawkw outlined in the first comment is valid, but it does have the downside that every error becomes...
Ah ok, seems I misunderstood the requirements here. If you are reconnecting just the layer 4 transport (say, TCP), how do you handle application-level negotiations that need to take place...
Added a second commit which adds an `#[inline]` for `Vec::put_slice`, which closed most of the remaining perf difference between 0.5 and 0.6. Will have another PR to add inlines to...
Yep, this has always been on the roadmap for `prost`, tracked in danburkert/prost#31. @nrc put up a draft PR just recently with an implementation at danburkert/prost#190, so it may be...
Hey all, this has been a really good discussion. I don't have any plans to use or work on proto3 JSON support, but if someone can figure out a way...
I have as of recent developed a need for `prost` to have JSON support, so I've been thinking about how to do this. I'm not going to be able to...
Yes I'd like to support this, in fact a recent refactor in https://github.com/danburkert/prost/commit/79f0dfd8ed703fcce27f053c3b29c360c7ead5cb was laying the groundwork. I don't think the set of types you will be able to substitue...
secret from #369
`prost` currently doesn't expose message descriptors in any interface except `ServiceBuilder`, so I'm curious what the usecase for options is? What does supporting them mean in the context of `prost`?