Skip to content

Commit d08d7d5

Browse files
committed
Revert "Disable the yoloproofs feature in Cargo.toml."
This reverts commit 91ec8d9.
1 parent f18e6f1 commit d08d7d5

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ rust:
66

77
env:
88
- TEST_COMMAND=test EXTRA_FLAGS='' FEATURES=''
9-
# Disabled for now along with the yoloproofs feature.
10-
#- TEST_COMMAND=test EXTRA_FLAGS='' FEATURES='yoloproofs'
9+
- TEST_COMMAND=test EXTRA_FLAGS='' FEATURES='yoloproofs'
1110
# run cargo bench with a filter that matches no benchmarks.
1211
# this ensures the benchmarks build but doesn't run them on the CI server.
1312
- TEST_COMMAND=bench EXTRA_FLAGS='"DONTRUNBENCHMARKS"' FEATURES=''

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ bincode = "1"
3131

3232
[features]
3333
avx2_backend = ["curve25519-dalek/avx2_backend"]
34-
# Disable the yoloproofs feature for the released crate, so that it's not possible for someone to publish a crate using R1CS proofs yet.
35-
# yoloproofs = []
34+
yoloproofs = []
3635

3736
[[bench]]
3837
name = "range_proof"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FEATURES :=
1+
FEATURES := yoloproofs
22

33
doc:
44
cargo rustdoc --features "$(FEATURES)" -- --html-in-header docs/assets/rustdoc-include-katex-header.html

0 commit comments

Comments
 (0)