Skip to content

Commit

Permalink
fix README and crate meta issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwample committed Jun 26, 2024
1 parent a1747e0 commit 88cadfb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
8 changes: 4 additions & 4 deletions curve25519-elligator2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
"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"
Expand Down Expand Up @@ -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 }

Expand Down
10 changes: 2 additions & 8 deletions curve25519-elligator2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```


Expand Down

0 comments on commit 88cadfb

Please sign in to comment.