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/lib.rs | |
parent | 39709aeebfe08052d84094c34e624acb591de4d1 (diff) | |
download | PAKEs-7bc80b5fb8ce188447cabccd9aeebffeb73cc1e8.tar.xz |
update srp to idioms of edition-2018
Diffstat (limited to 'srp/src/lib.rs')
-rw-r--r-- | srp/src/lib.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/srp/src/lib.rs b/srp/src/lib.rs index 1467496..d05cfa8 100644 --- a/srp/src/lib.rs +++ b/srp/src/lib.rs @@ -64,14 +64,6 @@ //! [1]: https://en.wikipedia.org/wiki/Secure_Remote_Password_protocol //! [2]: https://tools.ietf.org/html/rfc5054 #![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")] -extern crate digest; -extern crate generic_array; -extern crate num; -#[macro_use] -extern crate lazy_static; - -#[cfg(test)] -extern crate sha1; pub mod client; pub mod groups; |