diff options
author | Brian Warner <warner@lothar.com> | 2018-12-20 16:01:37 -0500 |
---|---|---|
committer | Brian Warner <warner@lothar.com> | 2018-12-20 16:01:37 -0500 |
commit | aa9674bbc150bac4352b80382724daf052072c8c (patch) | |
tree | 30f75541594804731da4ff06b1fdefaed334551b /srp/src/lib.rs | |
parent | bd19c404c6a6f316871518ace644d8ef871afc61 (diff) | |
parent | 3711fa0839f0013a2ac545c8356602d2c51e1ea8 (diff) | |
download | PAKEs-aa9674bbc150bac4352b80382724daf052072c8c.tar.xz |
Merge branch '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; |