diff options
author | Brian Warner <warner@lothar.com> | 2018-12-06 11:57:53 -0800 |
---|---|---|
committer | Brian Warner <warner@lothar.com> | 2018-12-06 15:00:26 -0800 |
commit | 39709aeebfe08052d84094c34e624acb591de4d1 (patch) | |
tree | c4e6ae6a20a32b5ac0b8c6cd38a860530d9f63c9 /srp/src/client.rs | |
parent | ea12f909c3774fdd53b136079ddf31caf51dd59f (diff) | |
download | PAKEs-39709aeebfe08052d84094c34e624acb591de4d1.tar.xz |
srp: fix to work with edition-2018
Diffstat (limited to 'srp/src/client.rs')
-rw-r--r-- | srp/src/client.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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> { |