1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00

remove libsnark feature from core, updates test script

This commit is contained in:
schaeff 2022-05-17 11:43:07 +02:00
parent 4e9389ed4e
commit 8a1e02de1f
2 changed files with 1 additions and 2 deletions

View file

@ -5,7 +5,7 @@ set -e
if [ -n "$WITH_LIBSNARK" ]; then
# run specifically the libsnark tests inside zokrates_core
cargo test -j 4 --release --package zokrates_core --features="libsnark" libsnark -- --test-threads=1
cargo test -j 4 --release --package zokrates_libsnark libsnark -- --test-threads=1
fi
# run all tests without libsnark on

View file

@ -10,7 +10,6 @@ readme = "README.md"
default = ["ark", "bellman"]
ark = ["zokrates_ast/ark", "zokrates_embed/ark", "zokrates_common/ark", "zokrates_interpreter/ark"]
bellman = ["zokrates_ast/bellman", "zokrates_embed/bellman", "zokrates_common/bellman", "zokrates_interpreter/bellman"]
libsnark = []
[dependencies]
log = "0.4"