aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2018-12-30 00:04:39 +0100
committerRobin Krahl <robin.krahl@ireas.org>2018-12-30 00:04:39 +0100
commit62d698db4941c06905cb08bdbe4cc35ad54132d5 (patch)
treecc06a91b5d24cacb8b0faedc5250793aa122fcab /src
parent3d951ab54daea9c362bdae2e0945701955c412e5 (diff)
downloadnitrokey-rs-62d698db4941c06905cb08bdbe4cc35ad54132d5.tar.gz
nitrokey-rs-62d698db4941c06905cb08bdbe4cc35ad54132d5.tar.bz2
Fix formatting using to rustfmt
Diffstat (limited to 'src')
-rw-r--r--src/auth.rs4
-rw-r--r--src/device.rs4
-rw-r--r--src/lib.rs11
-rw-r--r--src/pws.rs4
4 files changed, 13 insertions, 10 deletions
diff --git a/src/auth.rs b/src/auth.rs
index ef39777..017cdbb 100644
--- a/src/auth.rs
+++ b/src/auth.rs
@@ -6,7 +6,9 @@ use nitrokey_sys;
use crate::config::{Config, RawConfig};
use crate::device::{Device, DeviceWrapper, Pro, Storage};
use crate::otp::{ConfigureOtp, GenerateOtp, OtpMode, OtpSlotData, RawOtpSlotData};
-use crate::util::{generate_password, get_command_result, get_cstring, result_from_string, CommandError};
+use crate::util::{
+ generate_password, get_command_result, get_cstring, result_from_string, CommandError,
+};
static TEMPORARY_PASSWORD_LENGTH: usize = 25;
diff --git a/src/device.rs b/src/device.rs
index 1f9ae3d..5dc6724 100644
--- a/src/device.rs
+++ b/src/device.rs
@@ -7,7 +7,9 @@ use crate::auth::Authenticate;
use crate::config::{Config, RawConfig};
use crate::otp::GenerateOtp;
use crate::pws::GetPasswordSafe;
-use crate::util::{get_command_result, get_cstring, get_last_error, result_from_string, CommandError};
+use crate::util::{
+ get_command_result, get_cstring, get_last_error, result_from_string, CommandError,
+};
/// Available Nitrokey models.
#[derive(Clone, Copy, Debug, PartialEq)]
diff --git a/src/lib.rs b/src/lib.rs
index 37f839a..9f21518 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -84,12 +84,7 @@
//! [`DeviceWrapper`]: enum.DeviceWrapper.html
//! [`User`]: struct.User.html
-#![warn(
- missing_docs,
- rust_2018_compatibility,
- rust_2018_idioms,
- unused,
-)]
+#![warn(missing_docs, rust_2018_compatibility, rust_2018_idioms, unused)]
mod auth;
mod config;
@@ -102,7 +97,9 @@ use nitrokey_sys;
pub use crate::auth::{Admin, Authenticate, User};
pub use crate::config::Config;
-pub use crate::device::{connect, Device, DeviceWrapper, Model, Pro, Storage, StorageStatus, VolumeStatus};
+pub use crate::device::{
+ connect, Device, DeviceWrapper, Model, Pro, Storage, StorageStatus, VolumeStatus,
+};
pub use crate::otp::{ConfigureOtp, GenerateOtp, OtpMode, OtpSlotData};
pub use crate::pws::{GetPasswordSafe, PasswordSafe, SLOT_COUNT};
pub use crate::util::{CommandError, LogLevel};
diff --git a/src/pws.rs b/src/pws.rs
index c95b63b..08ac365 100644
--- a/src/pws.rs
+++ b/src/pws.rs
@@ -2,7 +2,9 @@ use libc;
use nitrokey_sys;
use crate::device::{Device, DeviceWrapper, Pro, Storage};
-use crate::util::{get_command_result, get_cstring, get_last_error, result_from_string, CommandError};
+use crate::util::{
+ get_command_result, get_cstring, get_last_error, result_from_string, CommandError,
+};
/// The number of slots in a [`PasswordSafe`][].
///