We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The Cargo.lock file is missing.
Cargo.lock
The text was updated successfully, but these errors were encountered:
given this is a library i thought that was the convention to avoid dependency conflicts?
Sorry, something went wrong.
Cargo.lock does not affect the consumers of your package, only Cargo.toml does that. For example: cargo install will select the latest dependencies unless --locked is passed in. New dependencies, like those added with cargo add, will be locked to the latest version
Cargo.lock does not affect the consumers of your package, only Cargo.toml does that. For example:
Cargo.toml
cargo install
--locked
cargo add
https://doc.rust-lang.org/cargo/faq.html#why-have-cargolock-in-version-control
No branches or pull requests
The
Cargo.lock
file is missing.The text was updated successfully, but these errors were encountered: