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
Thank you for the project! We're looking into using wasm-coredump in wasmi for generating coredumps. The problem is that wasmi is designed for no_std environments and wasm-coredump depends on leb128 which requires std. Would you be interested in leb128 having no_std support?
Making leb128 no_std is quite easy. The only problem is that there is no io::Read and io::Write in core yet. The solution is to use embedded-io which provides no_std io traits and can also automatically convert everything implementing std::io traits. Would you be ok with leb128 having a dependency on embedded-io?
The text was updated successfully, but these errors were encountered:
Thank you for the project! We're looking into using wasm-coredump in wasmi for generating coredumps. The problem is that wasmi is designed for no_std environments and wasm-coredump depends on leb128 which requires std. Would you be interested in leb128 having no_std support?
Making leb128 no_std is quite easy. The only problem is that there is no io::Read and io::Write in core yet. The solution is to use embedded-io which provides no_std io traits and can also automatically convert everything implementing std::io traits. Would you be ok with leb128 having a dependency on embedded-io?
The text was updated successfully, but these errors were encountered: