Add a Halo2-focused DAG

This commit is contained in:
Jack Grigg 2022-02-07 15:45:30 +00:00
parent 7931171aa2
commit 1c0e89d75c
2 changed files with 7 additions and 0 deletions

View File

@ -10,5 +10,6 @@
<p><a href="zcash-core-dag.svg">ECC core team DAG</a></p>
<p><a href="zcash-wallet-dag.svg">ECC wallet team DAG</a></p>
<p><a href="zcash-zf-dag.svg">ZF DAG</a></p>
<p><a href="zcash-halo2-dag.svg">Halo2-focused DAG</a></p>
</body>
</html>

View File

@ -33,6 +33,11 @@ CORE_REPOS = {
344239327: ('zcash', 'pasta_curves'),
}
HALO2_REPOS = {
290019239: ('zcash', 'halo2'),
344239327: ('zcash', 'pasta_curves'),
}
WALLET_REPOS = {
85334928: ('zcash', 'librustzcash'),
151763639: ('zcash', 'zcash-android-wallet-sdk'),
@ -50,6 +55,7 @@ ZF_REPOS = {
REPO_SETS = {
'core': CORE_REPOS,
'halo2': HALO2_REPOS,
'wallet': WALLET_REPOS,
'zf': ZF_REPOS,
}