Lucio Franco

Results 524 comments of Lucio Franco

Good idea, we can add a new feature to `tonic-build` that just forwards that specific feature. I would accept a PR for this.

I believe the best spot to read about it is here https://doc.rust-lang.org/cargo/reference/features.html

If you find a good solution for that then sure! But we need to be careful because its still allowed to use different versions of tonic in the same project.

How are you filtering your logs? These are just the h2 debug logs used by the http2 implementation tonic is using.

I am trying to remember why we didn't include this. I know for requests we have `IntoRequest`. But I can't come up with why we shouldn't include this. Would love...

This is going to have to wait for the next breaking change release.

I do not believe this is currently a feature of prost, so will need to be RFC and added.

Unfortunately, a Vec is required. Supporting generic iterators is quite hard to support I believe.

I wonder if you could use this https://docs.rs/sync_wrapper/0.1.1/sync_wrapper/struct.SyncWrapper.html

To convert from a `&self` anyways for a service requires a clone so I don't think you can skip out on that.