aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mueller <deso@posteo.net>2020-11-30 20:02:38 -0800
committerDaniel Mueller <deso@posteo.net>2020-11-30 20:02:38 -0800
commitf6353234e6037ad294d5da9c16a23881dac5933e (patch)
tree8460ce092eff33b9ba662ec082d6851b1c59a8f8
parent64dc5bcbcc703d72fc57f0675492b13ac7aeaba9 (diff)
downloadnitrocli-f6353234e6037ad294d5da9c16a23881dac5933e.tar.gz
nitrocli-f6353234e6037ad294d5da9c16a23881dac5933e.tar.bz2
Update structopt dependency to 0.3.21
This change updates the structopt crate to version 0.3.21. We need this version as it fixes a compilation error [0] when using the external_subcommand enum variant annotation provided by the crate with certain versions of Rust. [0]: https://github.com/TeXitoi/structopt/issues/447
-rw-r--r--CHANGELOG.md2
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml2
3 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2496bd6..4e728ab 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -25,7 +25,7 @@ Unreleased
Storage devices
- Renamed the `--{no-,}{numlock,capslock,scrollock}` options of the `config
set` command to `--{no-,}{num-lock,caps-lock,scroll-lock}`
-- Bumped `structopt` dependency to `0.3.17`
+- Bumped `structopt` dependency to `0.3.21`
- Bumped `nitrokey` dependency to `0.8.0`
diff --git a/Cargo.lock b/Cargo.lock
index 506ffec..670ed67 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -462,9 +462,9 @@ dependencies = [
[[package]]
name = "structopt"
-version = "0.3.17"
+version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6cc388d94ffabf39b5ed5fadddc40147cb21e605f53db6f8f36a625d27489ac5"
+checksum = "5277acd7ee46e63e5168a80734c9f6ee81b1367a7d8772a2d765df2a3705d28c"
dependencies = [
"clap",
"lazy_static",
@@ -473,9 +473,9 @@ dependencies = [
[[package]]
name = "structopt-derive"
-version = "0.4.10"
+version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5e2513111825077552a6751dfad9e11ce0fba07d7276a3943a037d7e93e64c5f"
+checksum = "5ba9cdfda491b814720b6b06e0cac513d922fc407582032e8706e9f137976f90"
dependencies = [
"heck",
"proc-macro-error",
diff --git a/Cargo.toml b/Cargo.toml
index 1af4f2f..c2d1d34 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -61,7 +61,7 @@ version = "1.0"
features = ["derive"]
[dependencies.structopt]
-version = "0.3.17"
+version = "0.3.21"
default-features = false
[dependencies.termion]