Skip to content

Commit

Permalink
Fix Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
autquis committed Feb 13, 2024
1 parent 5515787 commit 7e798f6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions crypto-primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ark-serialize = { version = "^0.4.0", default-features = false, features = [ "de
blake2 = { version = "0.10", default-features = false }
sha2 = { version = "0.10", default-features = false }
digest = { version = "0.10", default-features = false }
merlin = { version = "3.0.0", default-features = false, optional = true }

ark-r1cs-std = { version = "^0.4.0", optional = true, default-features = false }
ark-snark = { version = "^0.4.0", default-features = false }
Expand All @@ -41,9 +42,9 @@ print-trace = [ "ark-std/print-trace" ]
parallel = [ "std", "rayon", "ark-ec/parallel", "ark-std/parallel", "ark-ff/parallel" ]
r1cs = [ "ark-r1cs-std", "tracing" ]
crh = [ "sponge" ]
sponge = []
commitment = ["crh"]
merkle_tree = ["crh"]
sponge = [ "merlin" ]
commitment = [ "crh" ]
merkle_tree = [ "crh" ]
encryption = []
prf = []
snark = []
Expand Down

0 comments on commit 7e798f6

Please sign in to comment.