diff options
author | Brian Warner <warner@lothar.com> | 2018-12-06 12:02:13 -0800 |
---|---|---|
committer | Brian Warner <warner@lothar.com> | 2018-12-06 15:00:26 -0800 |
commit | 7bc80b5fb8ce188447cabccd9aeebffeb73cc1e8 (patch) | |
tree | d59dcc7bfd1e041b7198c2a26c7ee0693473f208 /srp/src/groups.rs | |
parent | 39709aeebfe08052d84094c34e624acb591de4d1 (diff) | |
download | PAKEs-7bc80b5fb8ce188447cabccd9aeebffeb73cc1e8.tar.xz |
update srp to idioms of edition-2018
Diffstat (limited to 'srp/src/groups.rs')
-rw-r--r-- | srp/src/groups.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/srp/src/groups.rs b/srp/src/groups.rs index 3438c42..d5c5fb9 100644 --- a/srp/src/groups.rs +++ b/srp/src/groups.rs @@ -4,6 +4,7 @@ //! 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 lazy_static::lazy_static; use num::BigUint; lazy_static! { |