Crates.io | cargo-freeze |
lib.rs | cargo-freeze |
version | 0.0.3 |
source | src |
created_at | 2017-09-05 21:27:00.774555 |
updated_at | 2017-09-05 22:08:08.356751 |
description | Edit Cargo.toml from Cargo.lock to freeze dependencies |
homepage | https://github.com/jmcomets/cargo-freeze |
repository | https://github.com/jmcomets/cargo-freeze |
max_upload_size | |
id | 30691 |
size | 1,975 |
I started this because I wanted to freeze all dependencies in my projects'
Cargo.toml
manifests to match the version I'd compiled in the Cargo.lock
lock files.
While searching for existing cargo manifest libraries, I stumbled upon
cargo-edit, which has an cargo-upgrade
subcommand that accomplishes
something similar, but instead of reading from the project's lock file, I
queries crates.io for the latest version.
I'd suggest using it instead of mine.