Skip to content

Commit

Permalink
chore: πŸ” check Cargo.lock into git
Browse files Browse the repository at this point in the history
the gitignore file, prior to this commit, states:

```
 # 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
```

this points to the rust documentation outlining lockfile practices,
here: https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html

Galileo is a binary, with a top-level `src/main.rs`. so, we should
follow that advice and remove `Cargo.lock` from the gitignore, and check
it into the repository.
  • Loading branch information
cratelyn authored and conorsch committed Jun 26, 2024
1 parent b087233 commit f8b3038
Show file tree
Hide file tree
Showing 2 changed files with 7,330 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
debug/
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

Expand Down
Loading

0 comments on commit f8b3038

Please sign in to comment.