From 8a1e02de1f3db9acd546867cbc14a421b4104519 Mon Sep 17 00:00:00 2001 From: schaeff Date: Tue, 17 May 2022 11:43:07 +0200 Subject: [PATCH] remove libsnark feature from core, updates test script --- test.sh | 2 +- zokrates_core/Cargo.toml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test.sh b/test.sh index 1b42db0b..b5146888 100755 --- a/test.sh +++ b/test.sh @@ -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 diff --git a/zokrates_core/Cargo.toml b/zokrates_core/Cargo.toml index b9da5598..1f46cecf 100644 --- a/zokrates_core/Cargo.toml +++ b/zokrates_core/Cargo.toml @@ -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"