Uh oh!
There was an error while loading. Please reload this page.
Enable to use newer protobuf - #415
Conversation
dskkato
commented
Sep 12, 2023
@adamcrume Could you check this PR if you have time? |
adamcrume
commented
Sep 16, 2023
The problem is that the generated code (which is checked in) is only compatible with the exact same version of We could switch to generating the code in a build script, which means that we need the proto files available at build time. We could do that by adding TensorFlow as a git submodule, but it's huge (hundreds of megabytes), and apparently cargo doesn't work well with submodules (rust-lang/cargo#7987). Possibly a better way is to just manually (with a script) copy the protos from TensorFlow into this crate for each version upgrade. |
Closes#414