-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement UncompressedEncoding
- Update Rust toolchain to version 1.59.0 to satisfy the requirement of constant_time_eq v0.2.5, - Implement UncompressedEncoding for affine representations, - Add `paste` dependency at version 1.0.12 in order to give a specific struct for that representation for each of Pallas, Vesta.
- Loading branch information
1 parent
7e3fc6a
commit 2ffb0bb
Showing
4 changed files
with
112 additions
and
3 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ authors = [ | |
"Jack Grigg <[email protected]>", | ||
] | ||
edition = "2021" | ||
rust-version = "1.56" | ||
rust-version = "1.59" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/zcash/pasta_curves" | ||
documentation = "https://docs.rs/pasta_curves" | ||
|
@@ -63,6 +63,7 @@ ec-gpu = { version = "0.2.0", optional = true } | |
# serde dependencies | ||
serde_crate = { version = "1.0.16", optional = true, default-features = false, features = ["alloc"], package = "serde" } | ||
hex = { version = "0.4", optional = true, default-features = false, features = ["alloc", "serde"] } | ||
paste = "1.0.12" | ||
|
||
[features] | ||
default = ["bits", "sqrt-table"] | ||
|
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
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,3 +1,3 @@ | ||
[toolchain] | ||
channel = "1.56.0" | ||
channel = "1.59.0" | ||
components = [ "clippy", "rustfmt" ] |
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