Marcus Griep

Results 43 comments of Marcus Griep

If desired, it is possible to facilitate this by using `.bytes()` or `.text()` instead of `.json()`, and then doing `serde_json::from_slice`/`from_str` as appropriate. If that fails, the `Bytes`/`String` structure will be...

That's part of it. Inside prost, I'm thinking about things like indicating a message or field should be a foreign type, providing specified names, etc. Below is a series of...

I posted up a _really_ quick example for the renaming of a field option I mentioned above. Should probably move this discussion to a separate issue or such, but it...

> Hi! Is this change abandoned now? It is somewhat similar to my feature request here: https://github.com/tokio-rs/prost/issues/658 > > > > I'd be particularly eager to see a way to...

> I could if course be wrong thinking that this would be trivial to maintain since I have never used protoc directly so have no familiarity with their release cadence...

I'm all for helping to make the orderly switch to Hopac. Like @haf, I too generally use Hopac to back Suave, so I would be happy to assist in this.

I'd add my support here in something at least less allocation heavy than always a String, at least for the DynamoDB SDK. I would be happy to have the API...

Wonderful! Glad to hear that removes the transitive dependency.

Confirming that I too encountered a similar issue, which resulted in significant increases in idle time being reported across the board, and some instances of what appeared to be an...

On our side, we are using `FutureProducer`. We also record the amount of time that it takes to confirm the publish, but move that off the main execution path by...