-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrade halo2curves 0.7.0 * version 0.39.0 * simplify trait impl, with latest halo2curves * export field and point types * small cleanup * update to the latest * cargo fmt * fix names * fix hash
- Loading branch information
1 parent
604399b
commit e184658
Showing
23 changed files
with
112 additions
and
267 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "nova-snark" | ||
version = "0.38.0" | ||
version = "0.39.0" | ||
authors = ["Srinath Setty <[email protected]>"] | ||
edition = "2021" | ||
description = "High-speed recursive arguments from folding schemes" | ||
|
@@ -19,23 +19,21 @@ rayon = "1.10" | |
rand_core = { version = "0.6", default-features = false } | ||
rand_chacha = "0.3" | ||
subtle = "2.6.1" | ||
pasta_curves = { version = "0.5", features = ["repr-c", "serde"] } | ||
halo2curves = { version = "0.6.0", features = ["bits", "derive_serde"] } | ||
halo2curves = { version = "0.8.0", features = ["bits", "derive_serde"] } | ||
generic-array = "1.1" | ||
num-bigint = { version = "0.4.6", features = ["serde", "rand"] } | ||
num-traits = "0.2.19" | ||
num-integer = "0.1.46" | ||
serde = { version = "1.0.216", features = ["derive"] } | ||
serde = { version = "1.0.217", features = ["derive"] } | ||
bincode = "1.3" | ||
bitvec = "1.0" | ||
byteorder = "1.4.3" | ||
thiserror = "2.0" | ||
group = "0.13.0" | ||
thiserror = "2.0.9" | ||
once_cell = "1.18.0" | ||
itertools = "0.13.0" | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
getrandom = { version = "0.2", default-features = false, features = ["js"] } | ||
getrandom = { version = "0.2.15", default-features = false, features = ["js"] } | ||
|
||
[dev-dependencies] | ||
criterion = { version = "0.5", features = ["html_reports"] } | ||
|
@@ -46,7 +44,7 @@ cfg-if = "1.0.0" | |
sha2 = "0.10.7" | ||
proptest = "1.6.0" | ||
rand = "0.8.5" | ||
expect-test = "1.5.0" | ||
expect-test = "1.5.1" | ||
|
||
[[bench]] | ||
name = "recursive-snark" | ||
|
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
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.