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
The cargo.lock file should not be inside the repo. Indeed it should be added to the .gitignore file.
The .gitignore should look like:
# Generated by Cargo
# will have compiled files and executables
/target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
The text was updated successfully, but these errors were encountered:
The
cargo.lock
file should not be inside the repo. Indeed it should be added to the.gitignore
file.The
.gitignore
should look like:The text was updated successfully, but these errors were encountered: