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/tests | |
parent | 39709aeebfe08052d84094c34e624acb591de4d1 (diff) | |
download | PAKEs-7bc80b5fb8ce188447cabccd9aeebffeb73cc1e8.tar.xz |
update srp to idioms of edition-2018
Diffstat (limited to 'srp/tests')
-rw-r--r-- | srp/tests/mod.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/srp/tests/mod.rs b/srp/tests/mod.rs index c410d69..58bfa0f 100644 --- a/srp/tests/mod.rs +++ b/srp/tests/mod.rs @@ -1,8 +1,4 @@ -extern crate num; -extern crate rand; -extern crate sha2; -extern crate srp; - +use rand; use rand::RngCore; use sha2::Sha256; |