diff options
author | Tony Arcieri <bascule@gmail.com> | 2021-12-20 18:46:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-20 18:46:23 -0700 |
commit | 689dc0ab6af950b027b4bab96f73c427d2c42d6e (patch) | |
tree | 83f9792448b9017322724f6145a11ce34a18d608 /srp/tests | |
parent | e38144177199721c3bf3f5e2cde403c2ce29c67e (diff) | |
download | PAKEs-689dc0ab6af950b027b4bab96f73c427d2c42d6e.tar.xz |
2021 edition bump + doc improvements; MSRV 1.56 (#80)
- Bumps both `spake2` and `srp` to Rust 2021 edition
- Uses the new `doc = include_str!(...)` attribute to include README.md
files in the rustdoc
- Improves the README.md files, adding an initial one for `srp`
- clippy fixes for Rust 1.56
Diffstat (limited to 'srp/tests')
-rw-r--r-- | srp/tests/srp.rs (renamed from srp/tests/mod.rs) | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/srp/tests/mod.rs b/srp/tests/srp.rs index 58bfa0f..bf6c30f 100644 --- a/srp/tests/mod.rs +++ b/srp/tests/srp.rs @@ -1,4 +1,3 @@ -use rand; use rand::RngCore; use sha2::Sha256; |