aboutsummaryrefslogtreecommitdiff
path: root/spake2/Cargo.toml
diff options
context:
space:
mode:
authorTony Arcieri <bascule@gmail.com>2021-12-20 18:46:23 -0700
committerGitHub <noreply@github.com>2021-12-20 18:46:23 -0700
commit689dc0ab6af950b027b4bab96f73c427d2c42d6e (patch)
tree83f9792448b9017322724f6145a11ce34a18d608 /spake2/Cargo.toml
parente38144177199721c3bf3f5e2cde403c2ce29c67e (diff)
downloadPAKEs-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 'spake2/Cargo.toml')
-rw-r--r--spake2/Cargo.toml10
1 files changed, 5 insertions, 5 deletions
diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml
index 4436183..5df4705 100644
--- a/spake2/Cargo.toml
+++ b/spake2/Cargo.toml
@@ -1,7 +1,6 @@
[package]
name = "spake2"
-version = "0.2.1-alpha.0"
-edition = "2018"
+version = "0.3.0-pre"
authors = ["Brian Warner <warner@lothar.com>"]
description = "The SPAKE2 password-authenticated key-exchange algorithm."
documentation = "https://docs.rs/spake2"
@@ -10,9 +9,10 @@ repository = "https://github.com/RustCrypto/PAKEs"
license = "MIT OR Apache-2.0"
keywords = ["crypto", "pake", "authentication"]
categories = ["cryptography", "authentication"]
-exclude = [
- ".gitignore"
-]
+exclude = [".gitignore"]
+readme = "README.md"
+edition = "2018"
+rust-version = "1.56"
[package.metadata.release]
tag-prefix = "spake2-v"