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/groups.rs | |
parent | ea12f909c3774fdd53b136079ddf31caf51dd59f (diff) | |
download | PAKEs-39709aeebfe08052d84094c34e624acb591de4d1.tar.xz |
srp: fix to work with edition-2018
Diffstat (limited to 'srp/src/groups.rs')
-rw-r--r-- | srp/src/groups.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/srp/src/groups.rs b/srp/src/groups.rs index 90b5209..3438c42 100644 --- a/srp/src/groups.rs +++ b/srp/src/groups.rs @@ -3,8 +3,8 @@ //! It is strongly recommended to use them instead of custom generated //! groups. Additionally it is not recommended to use `G_1024` and `G_1536`, //! they are provided only for compatibility with the legacy software. +use crate::types::SrpGroup; use num::BigUint; -use types::SrpGroup; lazy_static! { pub static ref G_1024: SrpGroup = SrpGroup { |