-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release a fork for temporary use before dalek 4.0 (#3)
* edit * update curve25519 * fmt Co-authored-by: onewayfunc <[email protected]>
- Loading branch information
1 parent
b981a7c
commit a81b137
Showing
23 changed files
with
79 additions
and
2,723 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,24 @@ | ||
[package] | ||
name = "curve25519-dalek" | ||
# Before incrementing: | ||
# - update CHANGELOG | ||
# - update html_root_url | ||
# - update README if required by semver | ||
# - if README was updated, also update module documentation in src/lib.rs | ||
version = "3.2.0" | ||
name = "noah-curve25519-dalek" | ||
version = "4.0.0" | ||
authors = ["Isis Lovecruft <[email protected]>", | ||
"Henry de Valence <[email protected]>"] | ||
readme = "README.md" | ||
license = "BSD-3-Clause" | ||
repository = "https://github.com/dalek-cryptography/curve25519-dalek" | ||
homepage = "https://dalek.rs/curve25519-dalek" | ||
documentation = "https://docs.rs/curve25519-dalek" | ||
repository = "https://github.com/FindoraNetwork/curve25519-dalek" | ||
categories = ["cryptography", "no-std"] | ||
keywords = ["cryptography", "crypto", "ristretto", "curve25519", "ristretto255"] | ||
description = "A pure-Rust implementation of group operations on ristretto255 and Curve25519" | ||
exclude = [ | ||
"**/.gitignore", | ||
".gitignore", | ||
".travis.yml", | ||
".gitignore" | ||
] | ||
|
||
[package.metadata.docs.rs] | ||
# Disabled for now since this is borked; tracking https://github.com/rust-lang/docs.rs/issues/302 | ||
# rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/curve25519-dalek-0.13.2/rustdoc-include-katex-header.html"] | ||
features = ["nightly", "simd_backend"] | ||
|
||
[badges] | ||
travis-ci = { repository = "dalek-cryptography/curve25519-dalek", branch = "master"} | ||
|
||
[dev-dependencies] | ||
sha2 = { version = "0.10", default-features = false } | ||
bincode = "1" | ||
|
Oops, something went wrong.