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/server.rs | |
parent | ea12f909c3774fdd53b136079ddf31caf51dd59f (diff) | |
download | PAKEs-39709aeebfe08052d84094c34e624acb591de4d1.tar.xz |
srp: fix to work with edition-2018
Diffstat (limited to 'srp/src/server.rs')
-rw-r--r-- | srp/src/server.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srp/src/server.rs b/srp/src/server.rs index 52e9c38..3946949 100644 --- a/srp/src/server.rs +++ b/srp/src/server.rs @@ -40,8 +40,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}; /// Data provided by users upon registration, usually stored in the database. pub struct UserRecord<'a> { |