Skip to content

Commit

Permalink
reference the right filepath in patching step
Browse files Browse the repository at this point in the history
  • Loading branch information
mmagician committed Sep 18, 2023
1 parent 6996cff commit 2f2aec8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,13 +242,13 @@ jobs:
fi
{
echo "[patch.crates-io]";
echo "ark-ff = { path = 'ark-algebra/ff' }";
echo "ark-serialize = { path = 'ark-algebra/serialize' }";
echo "ark-ff-macros = { path = 'ark-algebra/ff-macros' }";
echo "ark-ff-asm = { path = 'ark-algebra/ff-asm' }";
echo "ark-ec = { path = 'ark-algebra/ec' }";
echo "ark-algebra-bench-templates = { path = 'ark-algebra/bench-templates' }"
echo "ark-algebra-test-templates = { path = 'ark-algebra/test-templates' }"
echo "ark-ff = { path = '../ark-algebra/ff' }";
echo "ark-serialize = { path = '../ark-algebra/serialize' }";
echo "ark-ff-macros = { path = '../ark-algebra/ff-macros' }";
echo "ark-ff-asm = { path = '../ark-algebra/ff-asm' }";
echo "ark-ec = { path = '../ark-algebra/ec' }";
echo "ark-algebra-bench-templates = { path = '../ark-algebra/bench-templates' }"
echo "ark-algebra-test-templates = { path = '../ark-algebra/test-templates' }"
echo "ark-bls12-377 = { git = 'https://github.com/arkworks-rs/curves' }"
echo "ark-bls12-381 = { git = 'https://github.com/arkworks-rs/curves' }"
echo "ark-bn254 = { git = 'https://github.com/arkworks-rs/curves' }"
Expand Down

0 comments on commit 2f2aec8

Please sign in to comment.