Port codebase to latest halo2 API.

This commit is contained in:
parazyd
2022-05-16 17:29:59 +02:00
parent 5b467f4cef
commit f8c2ee5617
31 changed files with 330 additions and 280 deletions

View File

@@ -1,9 +1,12 @@
#!/bin/sh
set -e
# foo|bar|baz
skip_bins='cashierd'
find_packages() {
find bin -type f -name Cargo.toml | while read line; do
if echo "$line" | grep -Eq 'cashierd|darkfid|gatewayd'; then
if echo "$line" | grep -Eq "$skip_bins"; then
continue
fi