threefoldtech / rmb-rs

RMB implementation in rust
Apache License 2.0
3 stars 1 forks source link

Clean build issue caused by newly generated cargo.lock #65

Closed sameh-farouk closed 2 years ago

sameh-farouk commented 2 years ago

currently, we don't check cargo.lock file in git as it is included within the .gitignore file. cargo.lock should be checked if we want to have a reproducible build.

I had an issue building after mistakenly updating my cargo.lock file. also, CI workflow on any new branch could have the same issue, old branches won't probably have this error as it will leverage the old cache, but I could be wrong.

sameh-farouk commented 2 years ago

Fixed in 729a46b8