-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove debugging lines (left in during #49)
- Loading branch information
1 parent
3bb36c5
commit 665226c
Showing
5 changed files
with
12 additions
and
6 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
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 = "poseidon-permutation" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
edition = "2018" | ||
authors = ["Penumbra <[email protected]>", "redshiftzero <[email protected]>"] | ||
description = "An instantiation of the Poseidon permutation" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "poseidon377" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
edition = "2018" | ||
authors = ["Penumbra <[email protected]>", "redshiftzero <[email protected]>"] | ||
description = "An instantiation of the Poseidon hash for use with decaf377." | ||
|
@@ -17,7 +17,7 @@ decaf377 = { version="0.4", default-features = false, features = ["r1cs"] } | |
num-bigint = { version = "0.4.3", default-features = false } | ||
once_cell = { version = "1.8", default-features = false } | ||
poseidon-parameters = { version="0.4", path = "../poseidon-parameters", default-features = false } | ||
poseidon-permutation = { version="0.4", path = "../poseidon-permutation", default-features = false } | ||
poseidon-permutation = { version="0.5", path = "../poseidon-permutation", default-features = false } | ||
|
||
# Dependencies added for ark-sponge vendoring | ||
ark-ec = { version = "0.4", default_features = false, optional=true } | ||
|