From 39709aeebfe08052d84094c34e624acb591de4d1 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Thu, 6 Dec 2018 11:57:53 -0800 Subject: srp: fix to work with edition-2018 --- srp/src/client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'srp/src/client.rs') diff --git a/srp/src/client.rs b/srp/src/client.rs index 57c29c8..6cc1d7f 100644 --- a/srp/src/client.rs +++ b/srp/src/client.rs @@ -62,8 +62,8 @@ use digest::Digest; use generic_array::GenericArray; use num::{BigUint, Zero}; -use tools::powm; -use types::{SrpAuthError, SrpGroup}; +use crate::tools::powm; +use crate::types::{SrpAuthError, SrpGroup}; /// SRP client state before handshake with the server. pub struct SrpClient<'a, D: Digest> { -- cgit v1.2.3