Skip to content

Commit

Permalink
fix(dep): Remove autogenerated Cargo.lock file for package compatibility
Browse files Browse the repository at this point in the history
The Cargo.lock file was deleted to maintain package compatibility in cases where this project is used as a dependency in others. It aims to prevent potential version conflict among the packages and provide flexibility in using different versions of the same package.
  • Loading branch information
shuhuiluo authored Feb 23, 2024
1 parent e1ee251 commit 48450f7
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4,441 deletions.
18 changes: 17 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,18 @@
/target
# Generated by Cargo
# will have compiled files and executables
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

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# IDEs
.idea
.vscode
Loading

0 comments on commit 48450f7

Please sign in to comment.