Skip to content

Commit 3affd4b

Browse files
committed
Fix makefile for client
1 parent 39a978b commit 3affd4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mithril-client/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ all: test build
1111

1212
build:
1313
# We use 'portable' feature to avoid SIGILL crashes
14-
${CARGO} build --release --features portable
14+
${CARGO} build --release --features portable,full
1515

1616
test:
17-
${CARGO} test
17+
${CARGO} test --features full
1818

1919
check:
2020
${CARGO} check --release --all-features --all-targets
@@ -25,4 +25,4 @@ clean:
2525
${CARGO} clean
2626

2727
doc:
28-
${CARGO} doc --no-deps --open
28+
${CARGO} doc --no-deps --open --features full

0 commit comments

Comments
 (0)