-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to latest Rust and fix Clippy warnings (#37)
* Update to latest Rust and fix Clippy warnings * cleanup
- Loading branch information
1 parent
f465aed
commit 19d1d63
Showing
19 changed files
with
227 additions
and
249 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[build] | ||
rustflags = [ | ||
"-C", "target-cpu=native", | ||
] |
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,6 +1,6 @@ | ||
[package] | ||
name = "spartan" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Srinath Setty <[email protected]>"] | ||
edition = "2018" | ||
description = "High-speed zkSNARKs without trusted setup" | ||
|
@@ -11,7 +11,7 @@ license-file = "LICENSE" | |
keywords = ["zkSNARKs", "cryptography", "proofs"] | ||
|
||
[dependencies] | ||
curve25519-dalek = {version = "3.0.0", features = ["serde", "simd_backend"]} | ||
curve25519-dalek = {version = "3.2.0", features = ["serde", "simd_backend"]} | ||
merlin = "3.0.0" | ||
rand = "0.7.3" | ||
digest = "0.8.1" | ||
|
@@ -20,7 +20,7 @@ byteorder = "1.3.4" | |
rayon = { version = "1.3.0", optional = true } | ||
serde = { version = "1.0.106", features = ["derive"] } | ||
bincode = "1.2.1" | ||
subtle = { version = "^2.2.3", default-features = false } | ||
subtle = { version = "2.4", default-features = false } | ||
rand_core = { version = "0.5", default-features = false } | ||
zeroize = { version = "1", default-features = false } | ||
itertools = "0.10.0" | ||
|
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
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
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
Oops, something went wrong.