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
It should be possible to make rust-protobuf no_std compatible. There are different approaches we could take either:
Use no-std-compat or similar to compile rust-protobuf to no_std. This would potentially be the least amount of work, but likely would require vendoring rust-protobuf under third_party/ and re-adding the std::prelude import to all the files (as no_std removes the implicit prelude import)
Edit all files to use alloc / core and fix any remaining issues manually. Hopefully as automated as possible.
If it is not viable to move rust-protobuf to no_std, then we may be required to move to a different library such as prost.
The text was updated successfully, but these errors were encountered:
It should be possible to make rust-protobuf
no_std
compatible. There are different approaches we could take either:no-std-compat
or similar to compile rust-protobuf tono_std
. This would potentially be the least amount of work, but likely would require vendoring rust-protobuf underthird_party/
and re-adding thestd::prelude
import to all the files (asno_std
removes the implicit prelude import)If it is not viable to move rust-protobuf to
no_std
, then we may be required to move to a different library such asprost
.The text was updated successfully, but these errors were encountered: