Skip to content

Commit

Permalink
Merge pull request #3483 from vn971/fix-changelog-structopt
Browse files Browse the repository at this point in the history
Fix CHANGELOG for structopt migration
  • Loading branch information
epage committed Feb 17, 2022
2 parents db9b181 + 7a315af commit 2f2b1c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -257,7 +257,7 @@ fn verify_app() {
<a name="migrate-structopt"></a>

1. Add CLI tests, `-h` and `--help` output at a minimum (recommendation: [trycmd](https://docs.rs/trycmd/) for snapshot testing)
2. Replace your dependency from `structopt = "..."` to `clap = { version = "3.0", features = "derive" }`
2. Replace your dependency from `structopt = "..."` to `clap = { version = "3.0", features = ["derive"] }`
1. *If you use `no-default-features`:* add the `std` feature
3. Resolve compiler errors, including
1. Update your `use` statements from `structopt` and `structopt::clap` to `clap`
Expand Down

0 comments on commit 2f2b1c2

Please sign in to comment.