diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2020-01-14 19:21:26 +0100 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2020-01-14 19:21:26 +0100 |
commit | 1df484fd699f88b6d7e23c09464294a7c26c7e00 (patch) | |
tree | bcdba40b40cb99c16e640b3484a38c5229287437 /src/commands.rs | |
parent | 5357d0dd6dbfbb545ee7ddc41ea4527775ca2e4b (diff) | |
download | nitrocli-1df484fd699f88b6d7e23c09464294a7c26c7e00.tar.gz nitrocli-1df484fd699f88b6d7e23c09464294a7c26c7e00.tar.bz2 |
Bump nitrokey dependency to version 0.5.1
This change updates the version of the nitrokey crate that we use to
0.5.1. As part of that, it replaces occurrences of Storage::get_status
with Storage::get_storage_status as the method has been renamed.
Diffstat (limited to 'src/commands.rs')
-rw-r--r-- | src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.rs b/src/commands.rs index 537a2cf..cc57786 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -356,7 +356,7 @@ fn print_status( if let nitrokey::DeviceWrapper::Storage(device) = device { let status = device - .get_status() + .get_storage_status() .map_err(|err| get_error("Getting Storage status failed", err))?; print_storage_status(ctx, &status) |