Skip to content

Commit

Permalink
used released version of decaf377
Browse files Browse the repository at this point in the history
  • Loading branch information
redshiftzero committed Apr 3, 2024
1 parent 5a52402 commit f523159
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = [
"poseidon377",
# "poseidon-paramgen" # Temporarily excluded until refactored
"poseidon-permutation",
#"poseidon-consistency", # Temporarily excluded until paramgen is refactored
# "poseidon-consistency", # Temporarily excluded until paramgen is refactored
"poseidon-parameters",
]

Expand Down
4 changes: 2 additions & 2 deletions poseidon-consistency/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/penumbra-zone/poseidon377"

[dependencies]
poseidon-parameters = { path = "../poseidon-parameters" }
poseidon-parameters = { path = "../poseidon-parameters", default-features = false }
#poseidon-paramgen = { path = "../poseidon-paramgen", default-features = false }
poseidon-permutation = { path="../poseidon-permutation", default-features = false }
decaf377 = { git="https://github.com/penumbra-zone/decaf377", branch="main", default-features = false }
decaf377 = { version="0.9", default-features = false }

[dev-dependencies]
criterion = { version = "0.4", features=["html_reports"] }
Expand Down
2 changes: 1 addition & 1 deletion poseidon-parameters/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["no_std"]
repository = "https://github.com/penumbra-zone/poseidon377"

[dependencies]
decaf377 = { git="https://github.com/penumbra-zone/decaf377", branch="main", default-features = false }
decaf377 = { version="0.9", default-features = false }

[dev-dependencies]
ark-ff = { version = "^0.4.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion poseidon-paramgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ num-bigint = { version = "0.4", default-features = false }
poseidon-parameters = { path = "../poseidon-parameters", default-features = false, version = "1.0" }

[dev-dependencies]
decaf377 = { git="https://github.com/penumbra-zone/decaf377", branch="main", default-features = false }
decaf377 = { version="0.9", default-features = false }
ark-bn254 = "0.4"
ark-ed-on-bls12-377 = "0.4"
ark-ed-on-bls12-381 = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion poseidon-permutation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/penumbra-zone/poseidon377"

[dependencies]
decaf377 = { git="https://github.com/penumbra-zone/decaf377", branch="main", default-features = false }
decaf377 = { version="0.9", default-features = false }
ark-ff = { version = "0.4", default-features = false, optional=true }
ark-std = { version = "^0.4.0", default-features = false, optional=true }
ark-r1cs-std = {version = "0.4", default-features = false, optional=true }
Expand Down
2 changes: 1 addition & 1 deletion poseidon377/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/penumbra-zone/poseidon377"

[dependencies]
decaf377 = { git="https://github.com/penumbra-zone/decaf377", branch="main", default-features = false }
decaf377 = { version="0.9", default-features = false }
poseidon-parameters = { version="1.0", path = "../poseidon-parameters", default-features = false }
poseidon-permutation = { version="1.0", path = "../poseidon-permutation", default-features = false }

Expand Down

0 comments on commit f523159

Please sign in to comment.