Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upFixes bug in wasm-builder with cargo publish #7299
Conversation
There was a bug in wasm-builder which resulted in generating a `Cargo.lock` in the project directory because of running `cargo metadata`. This resulted in commands like `cargo publish` to fail (if there was no `Cargo.lock` before building), because it checks that the project directory isn't modified.
|
New version needs to be published and should be good to merge afterwards. |
Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>
8efe8b8
into
master
There was a bug in wasm-builder which resulted in generating a
Cargo.lockin the project directory because of runningcargo metadata. This resulted in commands likecargo publishto fail (ifthere was no
Cargo.lockbefore building), because it checks that theproject directory isn't modified.
Fixes: #7116