cargo-rm

Crates.iocargo-rm
lib.rscargo-rm
version1.0.3
sourcesrc
created_at2020-09-06 20:50:50.805583
updated_at2022-06-17 18:01:20.008249
descriptionRemove Cargo.lock lockfile
homepage
repositoryhttps://github.com/dtolnay/cargo-rm
max_upload_size
id285523
size26,947
Lanthanum (github:zxtn:lanthanum)

documentation

https://github.com/dtolnay/cargo-rm

README

cargo rm

github crates.io build status

New Cargo versions sometimes write out a lockfile that triggers parse failures in old Cargo versions.

$  cargo +1.41.0 check
...
    Finished dev [unoptimized + debuginfo] target(s) in 0.91s

$  cargo +1.37.0 check
error: failed to parse lock file at: /git/testing/Cargo.lock

Caused by:
  invalid serialized PackageId for key `package.dependencies`

The cargo rm subcommand simply deletes the offending lockfile so that the old Cargo can proceed. Install by running cargo install cargo-rm.


vs rm Cargo.lock

cargo rm has three advantages:

  • It still works if run from a workspace member, where the lockfile would be located at the workspace root rather than the current directory.

  • It works if run from a subdirectory of a crate rather than the crate root.

  • If like me you use export FIGNORE=argo.lock in your shell so that all autocompletes prefer Cargo.toml over Cargo.lock, this is easier to type.


License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Commit count: 72

cargo fmt