From 88cadfb55e360ff50e9d34f53abc8689496250a2 Mon Sep 17 00:00:00 2001 From: jmwample <8297368+jmwample@users.noreply.github.com> Date: Wed, 26 Jun 2024 16:38:52 -0600 Subject: [PATCH] fix README and crate meta issues --- curve25519-elligator2/Cargo.toml | 8 ++++---- curve25519-elligator2/README.md | 10 ++-------- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/curve25519-elligator2/Cargo.toml b/curve25519-elligator2/Cargo.toml index f25208a0..242facd0 100644 --- a/curve25519-elligator2/Cargo.toml +++ b/curve25519-elligator2/Cargo.toml @@ -12,9 +12,9 @@ authors = ["Isis Lovecruft ", "jmwample"] readme = "README.md" license = "BSD-3-Clause" -repository = "https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek" -homepage = "https://github.com/dalek-cryptography/curve25519-dalek" -documentation = "https://docs.rs/curve25519-dalek" +repository = "https://github.com/jmwample/curve25519-dalek/tree/main/curve25519-elligator2" +homepage = "https://github.com/jmwample/curve25519-dalek" +documentation = "https://docs.rs/curve25519-elligator2" categories = ["cryptography", "no-std"] keywords = ["cryptography", "crypto", "ristretto", "curve25519", "ristretto255"] description = "A pure-Rust implementation of group operations on ristretto255 and Curve25519" @@ -55,7 +55,7 @@ ff = { version = "0.13", default-features = false, optional = true } group = { version = "0.13", default-features = false, optional = true } rand_core = { version = "0.6.4", default-features = false, optional = true } digest = { version = "0.10", default-features = false, optional = true } -subtle = { version = "2.3.0", default-features = false } +subtle = { version = "2.6.0", default-features = false } serde = { version = "1.0", default-features = false, optional = true, features = ["derive"] } zeroize = { version = "1", default-features = false, optional = true } diff --git a/curve25519-elligator2/README.md b/curve25519-elligator2/README.md index 970baa22..6d315c56 100644 --- a/curve25519-elligator2/README.md +++ b/curve25519-elligator2/README.md @@ -11,16 +11,10 @@ use in the interim period. As such, this crate: # Use -To import `curve25519-dalek`, add the following to the dependencies section of +To import `curve25519-elligator2`, add the following to the dependencies section of your project's `Cargo.toml`: ```toml -curve25519-elligator2 = "4" -``` - -If opting into [SemVer-exempted features](#public-api-semver-exemptions) a range -can be used to scope the tested compatible version range e.g.: -```toml -curve25519-elligator2 = ">= 4.0, < 4.2" +curve25519-elligator2 = "0.1.0-alpha.1" ```