Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When creating a bin crate inside a lib crate, Cargo.lock is ignored. #1511

Closed
LaylBongers opened this issue Apr 11, 2015 · 1 comment
Closed

Comments

@LaylBongers
Copy link

When creating a lib project, cargo will add a .gitignore file for it. When you then create a bin project inside that, it will not add another .gitignore, and the first .gitignore causes the Cargo.lock file in the bin to be ignored.
As a solution for this, perhaps change the default lib .gitignore from:

target
Cargo.lock

To:

/target
/Cargo.lock

And do the same for the bin .gitignore, then just add a .gitignore as usual when a new project is created that's nested inside another project, instead of relying the parenting .gitignore to handle that.

@alexcrichton
Copy link
Member

This has been brought up in the past, but the current idea is that the generated gitignore is the "most common" one, but it's always quite easily configurable!

The current common use case is to possibly create component libraries in a repo hierarchy in which case you want to ignore all target directories and Cargo.lock files. This isn't always the case, however, but that's why .gitignore is configurable :)

As a result I'm going to close this, but thanks for the report!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants