aboutsummaryrefslogtreecommitdiff
path: root/nitrocli/src/pinentry.rs
diff options
context:
space:
mode:
authorDaniel Mueller <deso@posteo.net>2018-12-10 22:11:41 -0800
committerDaniel Mueller <deso@posteo.net>2018-12-10 22:11:41 -0800
commit0b18dd976269b09d3d44208eaab0000ddfebaf93 (patch)
treea72b23a25af51c1fbd8300ec68cd3f093ac731f7 /nitrocli/src/pinentry.rs
parent7fd034561b13bac5ab02d8ba23c40be1a70b5a9c (diff)
downloadnitrocli-0b18dd976269b09d3d44208eaab0000ddfebaf93.tar.gz
nitrocli-0b18dd976269b09d3d44208eaab0000ddfebaf93.tar.bz2
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".
Diffstat (limited to 'nitrocli/src/pinentry.rs')
-rw-r--r--nitrocli/src/pinentry.rs3
1 files changed, 2 insertions, 1 deletions
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 <http://www.gnu.org/licenses/>. *
// *************************************************************************
-use error::Error;
use std::process;
+use crate::error::Error;
+
/// PIN type requested from pinentry.
///