StardustXR/core

Missing lockfile

Opened this issue · 2 comments

The Cargo.lock file is missing.

given this is a library i thought that was the convention to avoid dependency conflicts?

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

https://doc.rust-lang.org/cargo/faq.html#why-have-cargolock-in-version-control