Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
Cargo.lock
target
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Committing Cargo.lock is generally discouraged for library crates. According to the Cargo Book, libraries should not check in their lock file. This ensures that the library is tested against the latest compatible versions of its dependencies in CI, which better reflects the environment of downstream users who will resolve dependencies based on their own lock files. Since netlink-proto is a library, it is recommended to keep Cargo.lock in .gitignore.

Cargo.lock
target

vendor/

Expand Down
Loading
Loading