diff options
author | Daniel Mueller <deso@posteo.net> | 2020-08-25 22:29:43 -0700 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2020-08-25 22:29:43 -0700 |
commit | fd7082b69228e41a19f05aa533511b6aa65c6ea2 (patch) | |
tree | 5b979650b1555b867ccec71dd5976b1f870dd7ee | |
parent | 6917be7ab3c5a9d47866a45855c836a9cc6f86ff (diff) | |
download | nitrocli-fd7082b69228e41a19f05aa533511b6aa65c6ea2.tar.gz nitrocli-fd7082b69228e41a19f05aa533511b6aa65c6ea2.tar.bz2 |
Update structopt dependency to 0.3.17
This change updates the structopt crate to version 0.3.13. We need this
version as it fixes a compilation error [0] when using the
external_subcommand enum variant annotation provided by the crate. This
functionality will be used in a follow up change that enables usage of
user provided extensions.
[0]: https://github.com/TeXitoi/structopt/issues/424
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | Cargo.lock | 8 | ||||
-rw-r--r-- | Cargo.toml | 2 |
3 files changed, 6 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 29a9faa..607ee3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ Unreleased options are set) - Added `--serial-number` option that restricts the serial number of the device to connect to +- Bumped `structopt` dependency to `0.3.17` 0.3.4 @@ -379,9 +379,9 @@ dependencies = [ [[package]] name = "structopt" -version = "0.3.13" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff6da2e8d107dfd7b74df5ef4d205c6aebee0706c647f6bc6a2d5789905c00fb" +checksum = "6cc388d94ffabf39b5ed5fadddc40147cb21e605f53db6f8f36a625d27489ac5" dependencies = [ "clap", "lazy_static", @@ -390,9 +390,9 @@ dependencies = [ [[package]] name = "structopt-derive" -version = "0.4.6" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a489c87c08fbaf12e386665109dd13470dcc9c4583ea3e10dd2b4523e5ebd9ac" +checksum = "5e2513111825077552a6751dfad9e11ce0fba07d7276a3943a037d7e93e64c5f" dependencies = [ "heck", "proc-macro-error", @@ -58,7 +58,7 @@ version = "1.0" features = ["derive"] [dependencies.structopt] -version = "0.3.7" +version = "0.3.17" default-features = false [dependencies.toml] |