From 0b18dd976269b09d3d44208eaab0000ddfebaf93 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Mon, 10 Dec 2018 22:11:41 -0800 Subject: Enable rust_2018_compatibility lint In preparation for the switch to using Rust 2018, this change enables the rust_2018_compatibility lint. Along with that enablement we fix the warnings emitted by it, which evolve around the module system changes Rust has gone through and that require us to prefix initial uses of crate local modules with "crate". --- nitrocli/src/error.rs | 1 - nitrocli/src/main.rs | 5 +++-- nitrocli/src/nitrokey.rs | 3 ++- nitrocli/src/pinentry.rs | 3 ++- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/nitrocli/src/error.rs b/nitrocli/src/error.rs index ea9a189..81d7de9 100644 --- a/nitrocli/src/error.rs +++ b/nitrocli/src/error.rs @@ -17,7 +17,6 @@ // * along with this program. If not, see . * // ************************************************************************* -use libhid; use std::fmt; use std::io; use std::string; diff --git a/nitrocli/src/main.rs b/nitrocli/src/main.rs index ebc0589..67a0a22 100644 --- a/nitrocli/src/main.rs +++ b/nitrocli/src/main.rs @@ -17,8 +17,8 @@ // * along with this program. If not, see . * // ************************************************************************* - #![deny(missing_docs)] +#![warn(rust_2018_compatibility)] //! Nitrocli is a program providing a command line interface to certain //! commands of the Nitrokey Storage device. @@ -31,13 +31,14 @@ mod error; mod nitrokey; mod pinentry; -use error::Error; use std::mem; use std::process; use std::result; use std::thread; use std::time; +use crate::error::Error; + type Result = result::Result; type NitroFunc = Fn(&mut libhid::Handle) -> Result<()>; diff --git a/nitrocli/src/nitrokey.rs b/nitrocli/src/nitrokey.rs index 83f5d1f..64685e2 100644 --- a/nitrocli/src/nitrokey.rs +++ b/nitrocli/src/nitrokey.rs @@ -17,10 +17,11 @@ // * along with this program. If not, see . * // ************************************************************************* -use crc32::crc; use std::cmp; use std::mem; +use crate::crc32::crc; + // The Nitrokey Storage vendor ID. pub const VID: u16 = 0x20A0; diff --git a/nitrocli/src/pinentry.rs b/nitrocli/src/pinentry.rs index 7bf1db9..b4695ec 100644 --- a/nitrocli/src/pinentry.rs +++ b/nitrocli/src/pinentry.rs @@ -17,9 +17,10 @@ // * along with this program. If not, see . * // ************************************************************************* -use error::Error; use std::process; +use crate::error::Error; + /// PIN type requested from pinentry. /// -- cgit v1.2.1