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/Cargo.toml | |
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/Cargo.toml')
-rw-r--r-- | srp/Cargo.toml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/srp/Cargo.toml b/srp/Cargo.toml index 92748e3..9230f8e 100644 --- a/srp/Cargo.toml +++ b/srp/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "srp" -version = "0.5.0" -edition = "2018" +version = "0.6.0-pre" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" description = "Secure Remote Password (SRP) protocol implementation" @@ -9,6 +8,9 @@ documentation = "https://docs.rs/srp" repository = "https://github.com/RustCrypto/PAKEs" keywords = ["crypto", "pake", "authentication"] categories = ["cryptography", "authentication"] +readme = "README.md" +edition = "2018" +rust-version = "1.56" [dependencies] num-bigint = "0.4" |