-
Notifications
You must be signed in to change notification settings - Fork 503
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #835 from zcash/halo2_poseidon-0.1.0
halo2_poseidon 0.1.0
- Loading branch information
Showing
5 changed files
with
24 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 = "halo2_gadgets" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = [ | ||
"Sean Bowe <[email protected]>", | ||
"Jack Grigg <[email protected]>", | ||
|
@@ -26,7 +26,7 @@ arrayvec = "0.7.0" | |
bitvec = "1" | ||
ff = "0.13" | ||
group = "0.13" | ||
halo2_poseidon = { version = "0.0", path = "../halo2_poseidon", default-features = false } | ||
halo2_poseidon = { version = "0.1", path = "../halo2_poseidon", default-features = false } | ||
halo2_proofs = { version = "0.3", path = "../halo2_proofs", default-features = false } | ||
lazy_static = "1" | ||
pasta_curves = "0.5" | ||
|
@@ -41,7 +41,7 @@ plotters = { version = "0.3.0", default-features = false, optional = true } | |
|
||
[dev-dependencies] | ||
criterion = "0.3" | ||
halo2_poseidon = { version = "0.0", path = "../halo2_poseidon", default-features = false, features = ["test-dependencies"] } | ||
halo2_poseidon = { version = "0.1", path = "../halo2_poseidon", default-features = false, features = ["test-dependencies"] } | ||
proptest = "1.0.0" | ||
sinsemilla = { version = "0.1", features = ["test-dependencies"] } | ||
|
||
|
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,12 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to Rust's notion of | ||
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.1.0] - 2024-12-16 | ||
Initial release, extracted from `halo2_gadgets 0.3.0`. Includes minor changes | ||
for `no-std` support. |
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 = "halo2_poseidon" | ||
version = "0.0.0" | ||
version = "0.1.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
"Daira Emma Hopwood <[email protected]>", | ||
|