On Thu, Jul 17, 2025 at 09:30:43PM +0000, brian m. carlson wrote: > On 2025-07-17 at 20:32:18, Ezekiel Newren via GitGitGadget wrote: > > diff --git a/rust/Cargo.lock b/rust/Cargo.lock > > new file mode 100644 > > index 000000000000..fb1eac690b39 > > --- /dev/null > > +++ b/rust/Cargo.lock > > @@ -0,0 +1,14 @@ > > +# This file is automatically @generated by Cargo. > > +# It is not intended for manual editing. > > +version = 4 > > + > > +[[package]] > > +name = "interop" > > +version = "0.1.0" > > + > > +[[package]] > > +name = "xdiff" > > +version = "0.1.0" > > +dependencies = [ > > + "interop", > > +] > > I would prefer that we not check in Cargo.lock in Git. Part of the > reason is that it changes across versions and so building with a > different version of the toolchain can update the file. That actually doesn't happen unless the file needs to be updated for some reason, like Cargo.toml having new dependencies or `cargo update` being run. Mike