cargo-freeze 0.0.3

Edit Cargo.toml from Cargo.lock to freeze dependencies
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cargo-freeze
============

# Important note

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.

[cargo-edit]: https://github.com/killercup/cargo-edit
[crates.io]: https://crates.io