Casper Meijn
Casper Meijn
@dependabot recreate
The suggested version range is still not what I expected. I send another PR upstream: https://github.com/dependabot/dependabot-core/pull/9956
@dependabot recreate
> Unsure how much else there's to split up. I suggest the following to make reviewing easier: - Split off "this PR removes manual indentation handling, delegating it to the...
> Thanks @caspermeijn! What is the next step for this PR to be merged? There you go
I agree. Are you willing to do the work?
Would this PR also address your problem? https://github.com/tokio-rs/prost/pull/1079 It changes the field type to `Option`. `OpenEnum` had a `known()` helper function that returns `Option`.
You can derive any trait you want using `type_attribute` as commented earlier. For example to derive Arbirary on every protobuf type: ```rust prost_build::Config::new() .type_attribute(".", "#[derive(arbitrary::Arbitrary)]") .compile_protos(&["src/types.proto"], &["src/"])?; ``` If this...
@giangndm I am preparing a breaking change. Are you still interested in this PR? If so, please update the code.
What problem does this solve? Dependabot will change all uses of a dependency when there is an update, right?