You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple cargo update && cargo build should succeed, but would fail like below:
error[E0425]: cannot find value `VERSION_3_2_0` in crate `protobuf`
--> update-format-crau/src/generated/update_metadata.rs:26:49
|
26 | const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_3_2_0;
| ^^^^^^^^^^^^^ help: a constant with a similar name exists: `VERSION_3_3_0`
|
::: .../target/debug/build/protobuf-05b38a490eb0844d/out/version.rs:7:1
|
7 | pub const VERSION_3_3_0: () = ();
| --------------------------- similarly named constant `VERSION_3_3_0` defined here
That is probably update_metadata.rs does not match with protobuf 3.3.0.
It is needed to manually regenerate the file.
The text was updated successfully, but these errors were encountered:
A simple
cargo update && cargo build
should succeed, but would fail like below:That is probably
update_metadata.rs
does not match with protobuf 3.3.0.It is needed to manually regenerate the file.
The text was updated successfully, but these errors were encountered: